-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
343 lines (306 loc) · 11.3 KB
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sozo App - Watch Anime in HD</title>
<link rel="icon" href="Images/logo.png" type="image/png"> <!-- Favicon -->
<style>
body {
background: url('Images/photo_2024-09-26_15-31-12_waifu2x_art_noise3_scale.png') no-repeat center center fixed;
background-size: cover; /* Cover the entire background */
color: #fff; /* White text for dark mode */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
overflow-x: hidden; /* Hide horizontal overflow */
position: relative; /* Allow absolute positioning for waves */
}
.waves {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0; /* Send waves behind content */
}
.wave {
position: absolute;
bottom: 0;
left: 50%;
width: 200%;
height: 50px;
background: rgba(255, 255, 255, 0.5);
border-radius: 50%;
animation: wave-animation 10s infinite linear;
}
/* Creating multiple waves */
.wave:nth-child(1) {
animation-delay: 0s;
opacity: 0.5;
transform: translateX(-50%);
}
.wave:nth-child(2) {
animation-delay: 1s;
opacity: 0.4;
height: 60px; /* Make waves of varying heights */
transform: translateX(-50%);
}
.wave:nth-child(3) {
animation-delay: 2s;
opacity: 0.3;
height: 70px;
transform: translateX(-50%);
}
.wave:nth-child(4) {
animation-delay: 3s;
opacity: 0.6;
height: 50px;
transform: translateX(-50%);
}
.wave:nth-child(5) {
animation-delay: 4s;
opacity: 0.5;
height: 65px;
transform: translateX(-50%);
}
.wave:nth-child(6) {
animation-delay: 5s;
opacity: 0.4;
height: 55px;
transform: translateX(-50%);
}
@keyframes wave-animation {
0% {
transform: translate(-50%, 0);
}
100% {
transform: translate(-50%, 10px);
}
}
.container {
position: relative; /* Keep content above waves */
max-width: 1200px;
margin: 50px auto;
padding: 20px;
border: 3px solid #ff4d4d; /* Light red border */
border-radius: 8px;
background-color: rgba(42, 42, 42, 0.8); /* Slightly transparent background for content */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
z-index: 1; /* Keep content above waves */
overflow: hidden; /* Prevent overflow */
}
.banner {
width: 100%;
max-height: 150px; /* Adjust the height of the banner */
overflow: hidden; /* Hide overflow */
margin-bottom: 20px; /* Space below the banner */
position: relative; /* Position for centering */
}
.banner img {
width: auto; /* Maintain aspect ratio */
height: 150px; /* Fixed height for the banner */
position: absolute;
left: 50%; /* Center the image */
top: 0; /* Adjust top for banner position */
transform: translate(-50%, 0); /* Adjust to center */
}
h1 {
text-align: center;
color: #ff4d4d; /* Light red text for headers */
}
p, li {
font-size: 18px;
line-height: 1.6;
text-align: center;
margin-bottom: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
.section {
background-color: rgba(42, 42, 42, 0.7); /* Semi-transparent section background */
border-radius: 8px;
margin-bottom: 20px;
padding: 20px;
}
.section-title {
text-align: left;
font-size: 24px;
color: #ff4d4d;
padding-top: 10px;
margin-left: 20px; /* Float the title to the left */
}
.section-content {
max-width: 1000px;
margin: 0 auto;
text-align: center;
padding-bottom: 30px;
}
.button-download {
display: block;
width: 250px;
margin: 30px auto;
padding: 15px;
background-color: #6b9621; /* Greenish download button */
color: #fff;
text-align: center;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
font-size: 18px;
}
.button-download:hover {
background-color: #83b53f; /* Hover effect for download button */
}
footer {
background-color: rgba(19, 19, 19, 0.8); /* Semi-transparent footer background */
padding: 50px 0;
color: #fff;
text-align: center;
font-size: 14px;
position: relative; /* Ensure footer is on top */
z-index: 1; /* Keep footer above waves */
}
.footer-logo {
font-size: 24px;
margin-bottom: 20px;
}
.footer-text {
margin: 10px 0;
}
.app-links {
display: flex;
justify-content: center;
gap: 40px;
margin: 20px 0;
flex-wrap: wrap; /* Wrap links for smaller screens */
}
.app-links a {
background-color: #6b9621; /* Similar green button */
padding: 10px 20px;
border-radius: 5px;
display: inline-block;
color: #fff;
text-decoration: none;
}
.app-links a.disabled {
background-color: #4f4f4f; /* Disabled color for unavailable apps */
}
.app-links a:hover {
background-color: #83b53f; /* Hover effect for active buttons */
}
.social-icons {
margin-top: 20px;
}
.social-icons img {
width: 40px; /* Adjust icon size */
margin: 0 10px; /* Space between icons */
cursor: pointer; /* Pointer cursor for icons */
}
.footer-bottom {
margin-top: 40px;
font-size: 12px;
color: #999;
}
/* Responsive Design */
@media (max-width: 768px) {
h1 {
font-size: 28px;
}
.section-title {
font-size: 20px;
}
.button-download {
width: 80%; /* Adjust button width for mobile */
}
.app-links {
flex-direction: column; /* Stack app links on mobile */
gap: 10px;
}
}
</style>
</head>
<body>
<div class="waves">
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
</div>
<div class="container">
<div class="banner">
<img src="Images/360_F_450688482_fOmo3GVFOvC2rxFhtCjxsHupq8FY7v8C_waifu2x_art_noise3_scale.png" alt="Sozo Banner">
</div>
<h1>Sozo App - Free Anime in HD on Any Device</h1>
<p>
Are you looking for an app to watch anime with friends and family? The Sozo App is the best choice for free anime streaming.
All for free and totally legal.
</p>
<a href="https://github.com/Sozo-app" class="button-download">Download Sozo App</a>
<p>* Scroll down for previous versions download</p>
<!-- Section: What is Sozo -->
<div class="section">
<div class="section-title">What is Sozo?</div>
<div class="section-content">
<p>Sozo is your gateway to the world of anime, providing a vast collection of shows and movies in HD, all available at your fingertips.</p>
</div>
</div>
<!-- Section: Why choose Sozo -->
<div class="section">
<div class="section-title">Why should you choose Sozo App for free anime streaming?</div>
<div class="section-content">
<ul>
<li><strong>Free without registration</strong> - Stream without creating an account; no hidden fees.</li>
<li><strong>Multi-subtitles</strong> - Enjoy foreign shows with subtitles in your preferred language.</li>
<li><strong>Multiple server options</strong> - Enjoy a smooth streaming experience with multiple server options available.</li>
<li><strong>Download your favorites</strong> - Save shows and movies to watch offline, anywhere, anytime.</li>
<li><strong>Custom favorite list</strong> - Keep track of your favorite shows and share them with friends.</li>
<li><strong>Latest daily updates</strong> - Stay updated with new releases and episodes daily.</li>
</ul>
</div>
</div>
<!-- Section: Is Sozo App safe? -->
<div class="section">
<div class="section-title">Is Sozo App safe?</div>
<div class="section-content">
<p>Absolutely! Sozo is completely safe to use and regularly updated for your security.</p>
</div>
</div>
<!-- Section: How to install Sozo App? -->
<div class="section">
<div class="section-title">How to install Sozo App?</div>
<div class="section-content">
<p>Installing Sozo is easy! Just download the app and follow the simple installation instructions for your device.</p>
</div>
</div>
<!-- Section: Is Sozo available for PC? -->
<div class="section">
<div class="section-title">Is Sozo available for PC?</div>
<div class="section-content">
<p>Currently, Sozo is available on mobile devices. However, you can access it through an emulator on your PC.</p>
</div>
</div>
</div>
<footer>
<div class="footer-logo">Sozo</div>
<div class="footer-text">Sozo - Watch free anime & TV shows online in HD on any device</div>
<!-- Social Icons -->
<div class="social-icons">
<a href="https://github.com/Sozo-app"><img src="Images/github.png" alt="github"></a>
<a href="https://discord.com/invite/n22URhYvMR"><img src="Images/discord.png" alt="Discord"></a>
<a href="https://t.me/SozoApp"><img src="Images/telegram.png" alt="Telegram"></a>
</div>
<div class="app-links">
<a href="#">Sozo for Android TV</a>
<a href="#" class="disabled">Sozo for iOS</a> <!-- Assuming this version is coming soon -->
<a href="#">Sozo for Android</a>
</div>
<div class="footer-bottom">© 2024 Sozo. All rights reserved.</div>
</footer>
</body>
</html>