-
Notifications
You must be signed in to change notification settings - Fork 2
/
home.html
429 lines (403 loc) · 19.7 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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home Page</title>
<link rel="preload" href="/fonts/open-sans-v20-latin-300.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/fonts/open-sans-v20-latin-regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/fonts/open-sans-v20-latin-600.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/fonts/open-sans-v20-latin-700.woff2" as="font" type="font/woff2" crossorigin>
<meta name="description"
content="Watch your favourite anime from around the world. Unlimited tv series and movies you can stream anywhere in your new favourite corner of the internet on animestudio+">
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon_package_v0.16/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon_package_v0.16/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon_package_v0.16/favicon-16x16.png">
<link rel="manifest" href="/images/favicon_package_v0.16/site.webmanifest">
<link rel="mask-icon" href="/images/favicon_package_v0.16/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/style.css" />
<script defer src="home.js"></script>
</head>
<body>
<header class="primary-header">
<div class="container">
<nav class="main-nav">
<a href="home.html" class="logo"><span class="bold">anime</span>studio<span class="text-accent">+</span></a>
<ul class="nav-list">
<li><a class="sign-in" href="#">sign in</a></li>
<li><a class="btn sign-up" href="#">sign up</a></li>
</ul>
</nav>
<!-- Sign In form -->
<div class="signing-form signin-form hidden">
<div class="description">
<h2 class="section-title">Animestudio<span class="text-accent">+</span> Welcomes You Back</h2>
<p class="spacer">You've been missed!</p>
</div>
<form action="#" class="spacer" data-sign-in>
<p class="success hidden"></p>
<div class="signup-info">
<div class="user-info">
<label for="username">Username</label>
<input type="text" name="username" id="username" placeholder="Username">
<p class="sign-in-error hidden" data-username-error></p>
</div>
<div class="user-info">
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="Password">
<p class="sign-in-error hidden" data-password-error></p>
</div>
<div class="user-info user-info--extra">
<div class="checkbox-group">
<input type="checkbox" name="checkbox" id="checkbox" value="value">
<label for="checkbox">Remember Me</label>
</div>
<p class="fake-link">Forgot Password?</p>
</div>
<button type="submit" class="btn spacer">Sign In</button>
</div>
</form>
</div>
<!-- Sign Up form -->
<div class="signing-form signup-form hidden">
<div class="description">
<h2 class="section-title">Animestudio<span class="text-accent">+</span> Welcomes You</h2>
<p class="spacer">Enter your information below to be able to have access to anime.</p>
</div>
<form action="#" class="spacer" data-sign-up>
<p class="error hidden"></p>
<div class="signup-info">
<div class="user-info">
<label for="username">Username</label>
<input type="text" name="username" id="username" placeholder="Username">
</div>
<div class="user-info">
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Email address">
</div>
<div class="user-info">
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="Password">
</div>
<div class="user-info">
<label for="confirm-password">Confirm password</label>
<input type="password" name="confirmedPassword" id="confirm-password" placeholder="Confirm password">
</div>
<div class="user-info user-info--checkbox">
<input type="checkbox" name="checkbox" id="checkbox" value="value">
<label class="checkbox" for="checkbox">Creating an account means you're okay with our <span>Terms of
Services, Privacy Policy</span>, and our default<span>
Notification Settings</span></label>
</div>
<button type="submit" class="btn spacer">Sign Up</button>
</div>
</form>
</div>
<div class="form-overlay hidden"></div>
<div class="sign-in-overlay hidden"></div>
</div>
</header>
<main>
<section class="hero">
<div class="container split">
<div class="info flow-content">
<h1 class="main-heading">
Watch your favourite anime from around the world.
</h1>
<p class="sub-heading">
Unlimited tv series and movies you can stream anywhere.
</p>
<a href="grid.html" class="btn">Start your free trail</a>
</div>
<div class="companies">
<img src="images/playstation.svg" width="24" height="24" alt="playstation logo" />
<img src="images/appstore.svg" width="25" height="24" alt="appstore logo" />
<img src="images/samsung.svg" width="24" height="24" alt="samsung logo" />
<img src="images/googleplay.svg" width="25" height="24" alt="googleplay logo" />
<img src="images/xbox.svg" width="24" height="24" alt="xbox logo" />
</div>
<div class="hero-image">
<img src="images/watching-movie.svg" width="1022" height="795" alt="two animated ladies sitting on a couch" />
</div>
</div> <!-- close of container -->
</section>
<section class="top-shows center bg-dark">
<div class="container flow-content">
<h2 class="section-title">
Animestudio+ is home to all the latest and greatest shows. Watch in
sub or dub.
</h2>
<div class="anime spacer">
</div>
<!-- close of shows -->
<a href="movies.html" class="btn spacer">Check our top movies</a>
</div>
<!-- close of container -->
</section>
<section class="devices center">
<div class="container flow-content">
<header class="flow-content">
<h2 class="section-title">
Animestudio+ available wherever you go.
</h2>
<p class="subtitle">
Whether you relaxing at home or on the go you can always watch the
best anime from one of our many different device apps.
</p>
</header>
<img class="spacer image" src="images/internet-on-the-go-primary.svg" width="725" height="425"
alt="different devices showcasing our animestudio app" />
<div class="companies spacer">
<img src="images/playstation.svg" width="24" height="24" alt="playstation logo" />
<img src="images/appstore.svg" width="25" height="24" alt="appstore logo" />
<img src="images/samsung.svg" width="24" height="24" alt="samsung logo" />
<img src="images/googleplay.svg" width="25" height="24" alt="googleplay logo" />
<img src="images/xbox.svg" width="24" height="24" alt="xbox logo" />
</div>
</div>
<!-- close of container -->
</section>
<section class="faq">
<div class="container">
<h2 class="section-title">Frequently asked questions.</h2>
<div class="questions spacer">
<!-- question 1 -->
<div class="question flow-content">
<div class="title question--1">
<h3 class="question-title">
How do I set parental controls on my Animestudio+ account?
</h3>
<img class="arrow" src="images/arrow-down.svg" width="24" height="24" alt="arrow facing down" />
</div>
<p class="info hidden">
To change the parental control setting in your account, you have
to do it from a computer. Go to Parental Controls under Manage
Profile and make the changes.
</p>
</div>
<!-- question 2 -->
<div class="question flow-content">
<div class="title question--2">
<h3 class="question-title">Why can’t I stream Animestudio+ in HD?</h3>
<img class="arrow" src="images/arrow-down.svg" width="24" height="24" alt="arrow facing down"
loading="lazy" />
</div>
<p class="info hidden">
You can only stream in HD if you’re subscribed to the Standard
and Premium plans. Basic plan doesn’t allow HD streaming.
</p>
</div>
<!-- question 3 -->
<div class="question flow-content">
<div class="title question--3">
<h3 class="question-title">
Can I watch Animestudio+ shows while I’m travelling?
</h3>
<img class="arrow" src="images/arrow-down.svg" width="24" height="24" alt="arrow facing down" />
</div>
<p class="info hidden">
Yes you can. As long as you are connected to stable WiFi. If
there are any differences you need to take note of, Animestudi+
will notify you immediately.
</p>
</div>
<!-- question 4 -->
<div class="question flow-content">
<div class="title question--4">
<h3 class="question-title">How do I change my Animestudio+ plan?</h3>
<img class="arrow" src="images/arrow-down.svg" width="24" height="24" alt="arrow facing down"
loading="lazy" />
</div>
<p class="info hidden">
To change your Animestudio+ streaming, go to your account page
and select ‘Change Plan’ to view the available streaming plans.
Then make your choice.
</p>
</div>
<!-- question 5 -->
<div class="question flow-content">
<div class="title question--5">
<h3 class="question-title">
Can I watch all the anime that Animestudio+ has to offer with
it’s free plan?
</h3>
<img class="arrow" src="images/arrow-down.svg" width="24" height="24" alt="arrow facing down"
loading="lazy" />
</div>
<p class="info hidden">
Unfortunetely you would need either a standard or premium plan
to watch all our anime rated 7 stars and above.
</p>
</div>
</div>
<!-- close of questions -->
</div>
<!-- close of container -->
</section>
<section class="plan center">
<div class="container">
<h2 class="section-title">
Choose a plan that’s right for you.
</h2>
<table class="plan-table spacer">
<!-- row 1 -->
<thead>
<tr class="packages">
<td> </td>
<th>Basic</th>
<th>Standard</th>
<th class="text-base">Premium</th>
</tr>
</thead>
<!-- row 2 -->
<tbody>
<tr class="benefit">
<th>Monthly Price</th>
<td>Free</td>
<td>R164,99</td>
<td class="text-accent">R199,99</td>
</tr>
<!-- row 3 -->
<tr class="benefit">
<th>Video Quality</th>
<td>Good</td>
<td>Better</td>
<td class="text-accent">Best</td>
</tr>
<!-- row 4 -->
<tr class="benefit">
<th>Resolution</th>
<td>480p</td>
<td>1080p</td>
<td class="text-accent">4K+HDR</td>
</tr>
<!-- row 5 -->
<tr class="benefit">
<th>Screens you can watch on at same time</th>
<td>1</td>
<td>2</td>
<td class="text-accent">4</td>
</tr>
<!-- row 6 -->
<tr class="benefit">
<th>Watch on your tv, computer, mobile phone and tablet</th>
<td>
<img src="images/tick-purple.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
<td>
<img src="images/tick-purple.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
<td>
<img src="images/tick-pink.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
</tr>
<!-- row 7 -->
<tr class="benefit">
<th>Unlimited movies and TV series</th>
<td> </td>
<td>
<img src="images/tick-purple.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
<td>
<img src="images/tick-pink.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
</tr>
<!-- row 8 -->
<tr class="benefit">
<th>No Ads</th>
<td> </td>
<td>
<img src="images/tick-purple.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
<td>
<img src="images/tick-pink.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
</tr>
<!-- row 9 -->
<tr class="benefit">
<th>Cancel Anytime</th>
<td>
<img src="images/tick-purple.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
<td>
<img src="images/tick-purple.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
<td>
<img src="images/tick-pink.svg" width="24" height="25" alt="A tick inside a circle" loading="lazy" />
</td>
</tr>
</tbody>
</table>
<a href="#" class="btn spacer">Choose a plan</a>
</div>
<!-- close of container -->
</section>
</main>
<footer class="main-footer">
<div class="container flow-content">
<div class="split">
<a href="#home.html" class="logo"><span class="bold">anime</span>studio<span class="text-accent">+</span></a>
<div class="footer-nav split">
<!-- list 1 -->
<div class="list flow-content">
<span class="h5">Company</span>
<ul class="flow-content">
<li><a href="home.html">Contact Us</a></li>
<li><a href="home.html">Help Centre</a></li>
<li><a href="home.html">Privacy</a></li>
</ul>
</div>
<!-- list 2 -->
<div class="list flow-content">
<span class="h5">Socials</span>
<ul class="flow-content">
<li class="socials">
<a href="home.html">
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M5.80529 0.244141C2.60817 0.244141 0 2.85231 0 6.04943V14.4389C0 17.636 2.60817 20.2441 5.80529 20.2441H14.1947C17.3918 20.2441 20 17.636 20 14.4389V6.04943C20 2.85231 17.3918 0.244141 14.1947 0.244141H5.80529ZM5.80529 1.7826H14.1947C16.5595 1.7826 18.4615 3.68164 18.4615 6.04943V14.4389C18.4615 16.8036 16.5625 18.7057 14.1947 18.7057H5.80529C3.4405 18.7057 1.53846 16.8066 1.53846 14.4389V6.04943C1.53846 3.68465 3.4375 1.7826 5.80529 1.7826ZM15.7692 3.32106C15.1322 3.32106 14.6154 3.83789 14.6154 4.47491C14.6154 5.11193 15.1322 5.62876 15.7692 5.62876C16.4062 5.62876 16.9231 5.11193 16.9231 4.47491C16.9231 3.83789 16.4062 3.32106 15.7692 3.32106ZM10 4.85953C7.03425 4.85953 4.61538 7.2784 4.61538 10.2441C4.61538 13.2099 7.03425 15.6288 10 15.6288C12.9657 15.6288 15.3846 13.2099 15.3846 10.2441C15.3846 7.2784 12.9657 4.85953 10 4.85953ZM10 6.39799C12.1334 6.39799 13.8462 8.11073 13.8462 10.2441C13.8462 12.3776 12.1334 14.0903 10 14.0903C7.86659 14.0903 6.15385 12.3776 6.15385 10.2441C6.15385 8.11073 7.86659 6.39799 10 6.39799Z"
fill="white" />
</svg><span>Instagram</span>
</a>
</li>
<li class="socials">
<a href="home.html"><svg width="20" height="21" viewBox="0 0 20 21" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10 0.244141C4.4775 0.244141 0 4.74471 0 10.2957C0 15.3348 3.69333 19.4961 8.505 20.2232V12.9593H6.03083V10.3174H8.505V8.55926C8.505 5.6485 9.91583 4.37112 12.3225 4.37112C13.475 4.37112 14.085 4.4574 14.3733 4.49593V6.80192H12.7317C11.71 6.80192 11.3533 7.77608 11.3533 8.87337V10.3174H14.3475L13.9417 12.9593H11.3533V20.2441C16.2342 19.5791 20 15.3842 20 10.2957C20 4.74471 15.5225 0.244141 10 0.244141Z"
fill="white" />
</svg><span>Facebook</span></a>
</li>
<li class="socials">
<a href="home.html"><svg width="20" height="21" viewBox="0 0 20 21" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M20 2.60392C19.2513 3.01257 18.4993 3.32106 17.666 3.42523C18.4993 2.80824 19.1667 1.7826 19.4987 0.652795C18.6654 1.26978 17.832 1.67844 16.9173 1.88677C16.084 0.861128 15 0.244141 13.8346 0.244141C11.582 0.244141 9.74935 2.49975 9.74935 5.26818C9.74935 5.68084 9.74935 6.08949 9.83398 6.39799C6.41602 6.19366 3.41797 4.24254 1.41602 1.16562C0.999349 1.88677 0.833333 2.80824 0.833333 3.72972C0.833333 5.47651 1.58203 7.01497 2.66602 7.93645C1.9987 7.83228 1.33464 7.62796 0.833333 7.31946C0.833333 7.31946 0.833333 7.31946 0.833333 7.42363C0.833333 9.88356 2.24935 11.9348 4.08203 12.3475C3.75 12.4477 3.41797 12.5518 3.0013 12.5518C2.75065 12.5518 2.5 12.5518 2.24935 12.4477C2.75065 14.499 4.2513 15.9373 6.08398 15.9373C4.66797 17.2714 2.91667 18.0887 0.999349 18.0887C0.667317 18.0887 0.332032 18.0887 0 17.9885C1.83268 19.4228 4.00065 20.2441 6.25 20.2441C13.8346 20.2441 17.9167 12.5518 17.9167 5.88517C17.9167 5.68084 17.9167 5.47651 17.9167 5.26818C18.75 4.55103 19.4173 3.62956 20 2.60392Z"
fill="white" />
</svg><span>Twitter</span></a>
</li>
</ul>
</div>
<!-- list 3 -->
<div class="list">
<span class="h5">More</span>
<ul class="flow-content">
<li><a href="home.html">Gift Cards</a></li>
<li><a href="home.html">Audio and Subtitles</a></li>
<li><a href="home.html">Jobs</a></li>
</ul>
</div>
</div>
</div>
<p class="copyright">
<img src="images/copyright.svg" alt="copyright logo" height="15" width="15" loading="lazy" /><span>Animestudio+
2021</span>
</p>
</div>
<!-- close of container -->
</footer>
</body>
</html>