-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
684 lines (531 loc) · 20.1 KB
/
index.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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
<html>
<head>
<link rel="stylesheet" href="style.css" />
<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>Hulu</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="media.css">
</head>
<body>
<!-- hero and header section -->
<div class="section-hero">
<header class="header">
<div class="nav">
<span class="span-hulu--logo">
<img
class="hulu-logo"
src="./img/hero-section/hulu-logo.svg"
alt="hulu company logo"
/>
</span>
<span class="login"><a href="#">Log in</a> </span>
</div>
</header>
<section class="bundle">
<div>
<h1 class="heading-primary">Bundle with any hulu plan and save</h1>
<img
class="hulu-disney-espn--logo"
src="./img/hero-section/hulu-disney.png"
alt="hulu-disney-espn logo"
/>
<p class="para-tertiary">
Get endless entertainement, live sports, and the shows and the
movies you love
</p>
<button class="btn-bundle">get the disney bundle</button>
<div class="included">
<a href="#">What's included?</a> See <a href="#">Bundle terma</a>
</div>
<div class="sign-up-hulu">
<a href="#"> Sign up for Hulu only </a>
</div>
</div>
</section>
</div>
<!-- library section -->
<section class="section-library">
<div class="lib-about">
<h1 class="heading-primary">included all plans</h1>
<h2 class="title-primary">All The TV You Love</h2>
<p class="lib-para">
Stream full seasons of exclusive series, current-season episodes, hit
movies, Hulu Originals, kids shows, and more.
</p>
</div>
<div class="lib-grid-container">
<div class="lib-grid">
<div class="lib-grid-item">
<div class="lib-gradient"></div>
<div class="lib-grid-about">
<h2>Past & Current seasons</h2>
<p>TV Shows</p>
</div>
</div>
<div class="lib-grid-item">
<div class="lib-gradient"></div>
<div class="lib-grid-about">
<h2>New & Classic</h2>
<p>Movies</p>
</div>
</div>
<div class="lib-grid-item">
<div class="lib-gradient"></div>
<div class="lib-grid-about">
<h2>Groundbreaking</h2>
<p>Hulu Originals</p>
</div>
</div>
<div class="lib-grid-item">
<div class="lib-gradient"></div>
<div class="lib-grid-about">
<h2>Add-on</h2>
<p>Premiums</p>
</div>
</div>
</div>
</div>
</section>
<!-- billboard section -->
<section class="section-billboard">
<div class="billboard">
<h1 class="heading-primary">
HULU + LIVE TV, NOW WITH DISNEY+ AND ESPN+
</h1>
<h2 class="title-primary">Live TV Makes It Better</h2>
<p class="billboard-para">
Make the switch from cable. Get 75+ top channels on Hulu with your
favorite live sports, news, and events - plus the entire Hulu
streaming library. With Unlimited DVR, store Live TV recordings for up
to nine months and fast-forward through your DVR content. Access
endless entertainment with Disney+ and live sports with ESPN+. All
three for a new price of $69.99/month.
</p>
<p class="billboard-disclaimer">
18+ only. Regional restrictions, blackouts and
<a href="#">Live TV terms apply.</a>
Access content from each service separately and access ESPN+ content
via Hulu.
<br />
Location data required to watch certain content. Offer valid for
eligible subscribers only. <br />Unlimited DVR recording is not
available for on-demand shows.
</p>
<button class="billboard-channel-link">
VIEW CHANNELS IN YOUR AREA →
</button>
<a class="drop-down-btn" href="#livesports"
><img src="./img/logos&utility/Dropdown_Down_Arrow.svg"
/></a>
</div>
</section>
<section class="section-livesports" id="livesports">
<div class="livesports-container">
<div class="carousel-navigation">
<button class="caraousel-btn active">
<span> live sports
</span>
<div class="slider">
</div>
</button>
<button class="caraousel-btn">
<span> breaking news </span>
</button>
<button class="caraousel-btn">
<span> biggest events </span>
</button>
<h2 class="livesports-heading">Live Sports</h2>
<p class="livesports-para">
Catch your games at home or on the go. Stream live games from major
college and pro leagues including the NCAA®, NBA, NHL, NFL, and
more.
</p>
<div class="company-logos-container">
<div class="logos-container-secondary">
<div class="logo-background">
<img src="./img/company-logos/cka35rzv205t90wgfxa4wz4q5-cbs-sports-network-logo-1.png" alt="">
</div>
</div>
<div class="logos-container-secondary">
<div class="logo-background">
<img src="./img/company-logos/cnn-logo.svg" alt="">
</div>
</div>
<div class="logos-container-secondary">
<div class="logo-background">
<img src="./img/company-logos/fox-news-logo.svg" alt="">
</div>
</div>
<div class="logos-container-secondary">
<div class="logo-background">
<img src="./img/company-logos/ckrp67fa801rn1u0tr0tnice2-nfl140x80.png" alt="">
</div>
</div>
</div>
<div class="included">
Live TV plan required. Regional restrictions, blackouts and additional terms apply.
<a href="#">See details</a>
</div>
</div>
</div>
</section>
<!-- section plan -->
<section class="section-plan-container">
<div class="section-plan">
<div class="plan-header">
<h2 class="plan-header--primary">
Select Your Plan
</h2>
<div class="plan-description">
No hidden fees, equipment rentals, or installation appointments.
<br>
<b> Switch plans or cancel anytime.^^</b>
</div>
</div>
<div class="plan-table-container">
<div class="plan-line"></div>
<div class="plan-table-main">
<div class="plan-table-header">
<div class="header-1st-row">
<div class="row-container">
<div class="base-plan">
<h3 class="base-text">base plans</h3>
<img src="./img/svg/hulu-logo.svg" alt="">
</div>
<div class="switch-container">
<input type="checkbox" id="switch" /><label for="switch">Toggle</label>
</div>
<div class="bundle-save">
<h3 class="base-text">Bundle / Save <span>
<img src="./img/svg/Info_Icon_White.svg" alt="">
</span></h3>
<span><img src="./img/svg/bundles-dark.svg" alt=""></span>
</div>
</div>
</div>
<div class="row-secondary">
<div class="header-2nd-row">
<div class="offer-1st">
<span>
30 DAY FREE TRIAL
</span>
<b>Hulu</b>
<button class="plan-btn">$6.99 /MONTH</button>
</div>
</div>
<div class="header-3rd-row">
<div class="offer-2nd">
<span>
30 DAY FREE TRIAL
</span>
<b>Hulu(No Ads)</b>
<button class="plan-btn">$12.99 /MONTH</button>
</div>
</div>
</div>
</div>
<div class="plan-table-data">
</div>
</div>
</div>
<!-- table plan remaining body -->
<div class="table-body">
<div class="plan-body-container">
<div class="plan-feature">
<span>Monthly price</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue plan">
<span>$6.99/mo</span>
</div>
<div class="plan-2ndvalue plan">
<span>$12.99/mo</span>
</div>
</div>
</div>
<div class="plan-body-container">
<div class="plan-feature ">
<span>Streaming Library with thousands of TV episodes and movies
</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue">
<span>
<img src="./img/logos&utility/check.svg" alt="">
</span>
</div>
<div class="plan-2ndvalue">
<span><img src="./img/logos&utility/check.svg" alt=""></span>
</div>
</div>
</div>
<div class="plan-body-container">
<div class="plan-feature ">
<span>Most new episodes the day after they air^
</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue">
<span>
<img src="./img/logos&utility/check.svg" alt="">
</span>
</div>
<div class="plan-2ndvalue">
<span><img src="./img/logos&utility/check.svg" alt=""></span>
</div>
</div>
</div>
<div class="plan-body-container">
<div class="plan-feature ">
<span>Access to award-winning Hulu Originals
</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue">
<span>
<img src="./img/logos&utility/check.svg" alt="">
</span>
</div>
<div class="plan-2ndvalue">
<span><img src="./img/logos&utility/check.svg" alt=""></span>
</div>
</div>
</div>
<div class="plan-body-container">
<div class="plan-feature ">
<span>Watch on your TV, laptop, phone, or tablet
</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue">
<span>
<img src="./img/logos&utility/check.svg" alt="">
</span>
</div>
<div class="plan-2ndvalue">
<span><img src="./img/logos&utility/check.svg" alt=""></span>
</div>
</div>
</div>
<div class="plan-body-container">
<div class="plan-feature ">
<span class="info-img">Up to 6 user profiles
</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue">
<span>
<img src="./img/logos&utility/check.svg" alt="">
</span>
</div>
<div class="plan-2ndvalue">
<span><img src="./img/logos&utility/check.svg" alt=""></span>
</div>
</div>
</div>
<div class="plan-body-container">
<div class="plan-feature ">
<span>Watch on 2 different screens at the same time
</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue">
<span>
<img src="./img/logos&utility/check.svg" alt="">
</span>
</div>
<div class="plan-2ndvalue">
<span><img src="./img/logos&utility/check.svg" alt=""></span>
</div>
</div>
</div>
<div class="plan-body-container">
<div class="plan-feature ">
<span class="info-img">No ads in streaming library
</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue">
<span>
<img src="./img/logos&utility/check.svg" alt="">
</span>
</div>
<div class="plan-2ndvalue">
<span><img src="./img/logos&utility/check.svg" alt=""></span>
</div>
</div>
</div>
<div class="plan-body-container">
<div class="plan-feature ">
<span class="info-img">
Download and watch
</span>
</div>
<div class="plan-value-container">
<div class="plan-1stvalue">
<span>
<img src="./img/logos&utility/check.svg" alt="">
</span>
</div>
<div class="plan-2ndvalue">
<span><img src="./img/logos&utility/check.svg" alt=""></span>
</div>
</div>
</div>
<div class="plan-foot billboard-disclaimer">
<span>
^For current-season shows in the streaming library only<br>
^^Switches from Live TV to Hulu take effect as of the next billing cycle
</span>
</div>
<div class="plan-adds-on">
Show Add-ons <span>
<img src="./img/logos&utility/Dropdown_Down_Arrow.svg" alt="">
</span>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-container">
<div class="hulu-footer">
<div class="footer-row">
<div class="footer-row-1">
<span class="footer-dropdown">
<h3>
Browse
</h3>
<span><img src="./img/logos&utility/dropdown_arrow.svg" alt=""></span>
</span>
<div class="row-xl footer-span-container">
<div class="row row-1">
<span class="footer-span"><a href="#"> Streaming Library</a></span>
<span class="footer-span"><a href="#"> Live TV</a></span>
<span class="footer-span"><a href="#"> Live News</a></span>
<span class="footer-span"><a href="#"> Live Sports</a></span>
</div>
<div class="row row-2">
<span class="footer-span"><a href="#"> Shows</a></span>
<span class="footer-span"><a href="#">Movies</a></span>
<span class="footer-span"><a href="#">Originals</a></span>
<span class="footer-span"><a href="#">Network</a></span>
<span class="footer-span"><a href="#">Kids</a></span>
<span class="footer-span"><a href="#">FX</a></span>
</div>
<div class="row row-3">
<span class="footer-span"><a href="#">HBO Max™</a></span>
<span class="footer-span"><a href="#">Cinemax</a></span>
<span class="footer-span"><a href="#">Showtime</a></span>
<span class="footer-span"><a href="#">STARZ</a></span>
</div>
<div class="row row-4">
<span class="footer-span"><a href="#"> Hulu, Disney+, and ESPN+ </a></span>
<span class="footer-span"><a href="#"> Hulu (No Ads), Disney+, and ESPN+ </a></span>
<span class="footer-span"><a href="#"> Student Discount </a></span>
</div>
</div>
</div>
<!-- div footer 2 -->
<div class="footer-row-2">
<div class="row row-1">
<span class="footer-dropdown">
<h3>Help</h3>
<span><img src="./img/logos&utility/dropdown_arrow.svg" alt=""></span>
</span>
<div class="footer-span-container flex">
<span class="footer-span"><a href="#">Account & Billing</a></span>
<span class="footer-span"><a href="#"> Plans & Pricing </a></span>
<span class="footer-span"><a href="#"> Supported Devices</a></span>
<span class="footer-span"><a href="#"> Accessibility</a></span>
</div>
</div>
<div class="row row-1">
<span class="footer-dropdown">
<h3>About us</h3>
<span><img src="./img/logos&utility/dropdown_arrow.svg" alt=""></span>
</span>
<div class="footer-span-container flex">
<span class="footer-span"><a href="#"> Shop Hulu</a></span>
<span class="footer-span"><a href="#"> Press</a></span>
<span class="footer-span"><a href="#"> Jobs</a></span>
<span class="footer-span"><a href="#"> Contact</a></span>
</div>
</div>
</div>
</div>
</div>
<!-- </div> -->
<div class="footer-bottom">
<div class="footer-logos">
<a href="#"><img src="./img/logos&utility/facebook.svg" alt=""></a>
<a href="#"><img src="./img/logos&utility/twitter.svg" alt=""></a>
<a href="#"><img src="./img/logos&utility/youtube.svg" alt=""></a>
<a href="#"><img src="./img/logos&utility/instagram.svg" alt=""></a>
</div>
<div class="footer-links">
<span>
<a href="#">© 2022 Hulu, LLC</a>
</span>
<span>
<a href="#">About Ads</a>
</span>
<span>
<a href="#">Terms of Use</a>
</span>
<span>
<a href="#">Privacy Policy</a>
</span>
<span>
<a href="#">Do Not Sell My Personal Information</a>
</span>
<span>
<a href="#">
Your California Privacy Rights</a>
</span>
<span>
<a href="#">TV Parental Guidelines</a>
</span>
<span>
<a href="#">Sitemap</a>
</span>
</div>
</div>
</div>
</div>
</footer>
<script>
let footerDropDown= document.querySelectorAll(".footer-dropdown");
for(let drop of footerDropDown){
drop.addEventListener("click",()=>{
// let parent= drop.parentElement;
let sibling= drop.nextElementSibling;
console.log(drop)
let dropDown= drop.children[1];
dropDown.classList.toggle("flip");
sibling.classList.toggle("d-flex");
})
}
// trying caraousel btn change shit
let caraousel= document.querySelectorAll(".caraousel-btn");
for(let btn of caraousel){
btn.addEventListener("click",()=>{
for(let btn of caraousel){
btn.classList.remove("active");
}
for(let cls of btn.classList){
if(cls !== "active"){
btn.classList.add("active");
}
}
}
)}
</script>
</body>
</html>