-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
821 lines (821 loc) · 31.3 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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
<!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"
/>
<link rel="stylesheet" href="style.css" />
<link
rel="shortcut icon"
href="images/favicon.png"
type="image/x-icon"
/>
<title>YouTube Embedded Video</title>
</head>
<body>
<header class="header__header flexRow">
<section class="header__menuLogoContainer flexRow">
<img
class="header__hamburger pointer"
src="images/menu.svg"
alt="Menu button"
/>
<div class="header__youtubeLogo flexRow pointer">
<img src="images/youtube.svg" alt="YouTube logo" />
<h1>YouTube</h1>
</div>
</section>
<section class="header__searchContainer flexRow">
<input
class="header__searchInput"
type="text"
placeholder="Search"
/>
<button class="header__searchBtn">
<img src="images/magnify.svg" alt="Search button" />
</button>
<button class="header__microphone">
<svg
viewBox="0 0 24 24"
preserveAspectRatio="xMidYMid meet"
focusable="false"
class="style-scope yt-icon microphone"
style="
pointer-events: none;
display: block;
width: 100%;
height: 100%;
"
>
<g class="style-scope yt-icon">
<path
d="M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"
class="style-scope yt-icon"
></path>
</g>
</svg>
</button>
</section>
<section class="header__actionContainer flexRow">
<button>
<img src="images/video-plus.svg" />
</button>
<button>
<img src="images/apps.svg" />
</button>
<button class="header__notifications">
<svg
viewBox="0 0 24 24"
preserveAspectRatio="xMidYMid meet"
focusable="false"
class="style-scope yt-icon"
style="
pointer-events: none;
display: block;
width: 100%;
height: 100%;
"
>
<g class="style-scope yt-icon">
<path
d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"
class="style-scope yt-icon"
></path>
</g>
</svg>
<span>9+</span>
</button>
<button class="header__profilePic">
<img src="images/account-circle.svg" />
</button>
</section>
</header>
<main class="main__main flexRow">
<section class="main__videoAndCommentsContainer">
<section class="video__container">
<div>
<iframe
src="https://www.youtube.com/embed/wLHNI96oF2A"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
</div>
<section class="video__videoInfo">
<h2 class="video__title">
Conan Suits Up For Comic-Con® - CONAN on TBS
</h2>
<section class="video__stats flexRow">
<section class="video__viewsAndDate flexRow">
<p>6,426,948 views</p>
<p>•</p>
<p>Jul 21, 2016</p>
</section>
<section class="video__likeShareSave flexRow">
<button>
<img src="images/thumb-up.svg" alt="upvote" />
<p>99K</p>
</button>
<button>
<img src="images/thumb-down.svg" alt="downvote" />
<p>1.7K</p>
</button>
<button>
<img src="images/share.svg" alt="share" />
<p>SHARE</p>
</button>
<button>
<img src="images/playlist-plus.svg" alt="save" />
<p>SAVE</p>
</button>
<button>
<img
src="images/dots-horizontal.svg"
alt="options"
/>
</button>
</section>
</section>
</section>
<section class="video__descriptionContainer flexRow">
<img
class="video__authorAvatar pointer"
src="https://yt3.ggpht.com/ytc/AAUvwnjUBfSWiTx09SVKiqkrLWwCVIrU7lhYNeVLFs4oJE0=s48-c-k-c0x00ffffff-no-rj"
/>
<div class="video__description">
<h3 class="video__author" class="pointer">
Team Coco
<button>
<svg
viewBox="0 0 24 24"
preserveAspectRatio="xMidYMid meet"
focusable="false"
class="style-scope yt-icon"
style="
pointer-events: none;
display: block;
width: 100%;
height: 100%;
"
>
<g class="style-scope yt-icon">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2z M9.92,17.93l-4.95-4.95l2.05-2.05l2.9,2.9l7.35-7.35l2.05,2.05L9.92,17.93z"
class="style-scope yt-icon"
></path>
</g>
</svg>
</button>
</h3>
<p class="video__authorSubscribers">
8.24M subscribers
</p>
<div class="video__notes">
CONAN Highlight: Ironhead Studios have costumed Wonder
Woman, Spider-Man, and now, they've created Conan’s
crotch-enhanced supersuit.
</div>
<div class="video__showMore pointer">SHOW MORE</div>
</div>
<div class="video__subscribeContainer flexRow">
<button class="video__subscribe">SUBSCRIBED</button>
<button class="video__subscribeAlert">
<svg
viewBox="0 0 24 24"
preserveAspectRatio="xMidYMid meet"
focusable="false"
style="
pointer-events: none;
display: block;
width: 100%;
height: 100%;
margin-left: 1rem;
"
>
<g class="style-scope yt-icon">
<path
d="M7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z"
class="style-scope yt-icon"
></path>
</g>
</svg>
</button>
</div>
</section>
</section>
<section class="comments__commentContainer">
<header class="comments__commentHeader flexRow">
<h3 class="comments__totalComments">4,480 Comments</h3>
<div class="comments__sortComments flexRow pointer">
<img src="images/sort-variant.svg" alt="sort" />
<p>SORT BY</p>
</div>
</header>
<section class="comments__addCommentContainer flexRow">
<img
class="comments__selfAvatar pointer"
src="images/account-circle.svg"
alt="account picture"
/>
<input
class="comments__addCommentInput"
type="text"
placeholder="Add a public comment..."
/>
</section>
<section class="comments__userContainer flexRow">
<img
class="comments__userAvatar pointer"
src="https://yt3.ggpht.com/ytc/AAUvwng7lEDVlIFEnlAmk75zw8BlJCot4drM2VNi_K89oA=s48-c-k-c0x00ffffff-no-rj"
alt="account picture"
/>
<section class="comments__userInfo">
<div class="comments__nameContainer flexRow">
<h4 class="comments__username pointer">mixflip</h4>
<p class="comments__hoursAgoPosted">4 years ago</p>
</div>
<div class="comments__comment">
I would wear a suit like that everyday...
</div>
<div class="comments__likesReplyContainer flexRow">
<img
src="images/thumb-up.svg"
alt="upvote"
class="pointer"
/>
<p>2.4K</p>
<img
src="images/thumb-down.svg"
alt="downvote"
class="pointer"
/>
<h6>REPLY</h6>
</div>
<div class="comments__commentReplies flexRow pointer">
<img src="images/menu-down.svg" alt="view more" />
<p>View 16 replies</p>
</div>
</section>
<img
class="comments__threeDots pointer"
src="images/dots-vertical-thumb.svg"
/>
</section>
<section class="comments__userContainer flexRow">
<img
class="comments__userAvatar pointer"
src="https://yt3.ggpht.com/ytc/AAUvwngEpWpBojk4tpv8BnKEa1q0Y7AwK-LgFflYoA-Ubw=s48-c-k-c0x00ffffff-no-rj"
alt="account picture"
/>
<section class="comments__userInfo">
<div class="comments__nameContainer flexRow">
<h4 class="comments__username pointer">
Adrian Soon
</h4>
<p class="comments__hoursAgoPosted">2 years ago</p>
</div>
<div class="comments__comment">
He looks like a superhero at the start of a movie but
actually the true villain at the end 😂
</div>
<div class="comments__likesReplyContainer flexRow">
<img
src="images/thumb-up.svg"
alt="upvote"
class="pointer"
/>
<p>4.6K</p>
<img
src="images/thumb-down.svg"
alt="downvote"
class="pointer"
/>
<h6>REPLY</h6>
</div>
<div class="comments__commentReplies flexRow pointer">
<img src="images/menu-down.svg" alt="view more" />
<p>View 19 replies</p>
</div>
</section>
<img
class="comments__threeDots pointer"
src="images/dots-vertical-thumb.svg"
/>
</section>
<section class="comments__userContainer flexRow">
<img
class="comments__userAvatar pointer"
src="https://yt3.ggpht.com/ytc/AAUvwniTWga6QdDu6iYUf9Hfdm4_Bs6zr1QbsFktIfTd=s48-c-k-c0x00ffffff-no-rj"
alt="account picture"
/>
<section class="comments__userInfo">
<div class="comments__nameContainer flexRow">
<h4 class="comments__username pointer">Blue Mask</h4>
<p class="comments__hoursAgoPosted">
2 years ago (edited)
</p>
</div>
<div class="comments__comment">
Conan<br />
Ability: making people uncomfortable
</div>
<div class="comments__likesReplyContainer flexRow">
<img
src="images/thumb-up.svg"
alt="upvote"
class="pointer"
/>
<p>9.4K</p>
<img
src="images/thumb-down.svg"
alt="downvote"
class="pointer"
/>
<h6>REPLY</h6>
</div>
<div class="comments__commentReplies flexRow pointer">
<img src="images/menu-down.svg" alt="view more" />
<p>View 23 replies</p>
</div>
</section>
<img
class="comments__threeDots pointer"
src="images/dots-vertical-thumb.svg"
/>
</section>
<section class="comments__userContainer flexRow">
<img
class="comments__userAvatar pointer"
src="https://yt3.ggpht.com/ytc/AAUvwnjONsyprpTCo7y5NBaITKK_m44TKx1-MT9Nm2rBXg=s48-c-k-c0x00ffffff-no-rj"
alt="account picture"
/>
<section class="comments__userInfo">
<div class="comments__nameContainer flexRow">
<h4 class="comments__username pointer">sir Purple</h4>
<p class="comments__hoursAgoPosted">1 year ago</p>
</div>
<div class="comments__comment">
He looks like a character from Lazytown
</div>
<div class="comments__likesReplyContainer flexRow">
<img
src="images/thumb-up.svg"
alt="upvote"
class="pointer"
/>
<p>5.2K</p>
<img
src="images/thumb-down.svg"
alt="downvote"
class="pointer"
/>
<h6>REPLY</h6>
</div>
<div class="comments__commentReplies flexRow pointer">
<img src="images/menu-down.svg" alt="view more" />
<p>View 38 replies</p>
</div>
</section>
<img
class="comments__threeDots pointer"
src="images/dots-vertical-thumb.svg"
/>
</section>
<section class="comments__userContainer flexRow">
<img
class="comments__userAvatar pointer"
src="https://yt3.ggpht.com/ytc/AAUvwnit1oe5NVQj7OYmIE8n-3X-WJRjfur-KxidRg=s48-c-k-c0x00ffffff-no-rj"
alt="account picture"
/>
<section class="comments__userInfo">
<div class="comments__nameContainer flexRow">
<h4 class="comments__username pointer">Sd Sd</h4>
<p class="comments__hoursAgoPosted">2 years ago</p>
</div>
<div class="comments__comment">
Top 3 villains:<br />
1-Conan<br />
2-Joffrey Lannister<br />
3-Thanos
</div>
<div class="comments__likesReplyContainer flexRow">
<img
src="images/thumb-up.svg"
alt="upvote"
class="pointer"
/>
<p>4.1K</p>
<img
src="images/thumb-down.svg"
alt="downvote"
class="pointer"
/>
<h6>REPLY</h6>
</div>
<div class="comments__commentReplies flexRow pointer">
<img src="images/menu-down.svg" alt="view more" />
<p>View 22 replies</p>
</div>
</section>
<img
class="comments__threeDots pointer"
src="images/dots-vertical-thumb.svg"
/>
</section>
</section>
</section>
<section class="main__recommendedVideosContainer">
<header class="recommended__videoOptions flexRow tablet">
<h3 class="pointer">All</h3>
<h3 class="pointer">Conan O'Brien</h3>
<h3 class="pointer">Superheroes</h3>
<h3 class="pointer">Comic Con</h3>
<h3 class="pointer">TeamCoCo</h3>
<h3 class="pointer">Conan</h3>
<img
src="images/chevron-right.svg"
alt="right chevron"
class="pointer"
/>
</header>
<section class="recommended__recommendedVideo flexRow">
<a href="https://www.youtube.com/watch?v=5qap5aO4i9A">
<img
src="https://i.ytimg.com/vi/5qap5aO4i9A/hqdefault_live.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLDaX8GHdXbxyh0YlEEtK4tlLACLbw"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<!-- <p></p> -->
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://www.youtube.com/watch?v=5qap5aO4i9A"
class="recommended__recVidTitle"
>lofi hip hop radio - beats to relax/study to</a
>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">
Lofi girl
</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
26K watching
</div>
</div>
<div class="recommended__liveNow">LIVE NOW</div>
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
<section class="recommended__recommendedVideo flexRow">
<a href="https://youtu.be/6TyIY6u31gk">
<img
src="https://i.ytimg.com/vi/6TyIY6u31gk/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLC3nwElEVFAEW4_3bg5LnHub0_Umg"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<p>4:42</p>
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://youtu.be/6TyIY6u31gk"
class="recommended__recVidTitle"
>Hacking your memory -- with sleep | Sleeping with
Science, a TED series
</a>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">TED</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
223,813 views • Sep 2, 2020
</div>
</div>
<!-- <div class="recommended__liveNow">LIVE NOW</div> -->
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
<section class="recommended__recommendedVideo flexRow">
<a href="https://youtu.be/qNYHXslSpDU">
<img
src="https://i.ytimg.com/vi/qNYHXslSpDU/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBz_PLItGJpO61EDJWHiXj-sXOHrw"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<p>5:51</p>
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://youtu.be/qNYHXslSpDU"
class="recommended__recVidTitle"
>What Happens To Your Body When You Climb | w/ Shauna
Coxsey
</a>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">
Red Bull
</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
576,595 views • Jan 24, 2020
</div>
</div>
<!-- <div class="recommended__liveNow">LIVE NOW</div> -->
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
<section class="recommended__recommendedVideo flexRow">
<a href="https://youtu.be/gY0zDyCnH_4">
<img
src="https://i.ytimg.com/vi/gY0zDyCnH_4/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLCQGevkdjE1Cf2K2OR2Pg6eYlDA-g"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<p>11:04</p>
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://youtu.be/gY0zDyCnH_4"
class="recommended__recVidTitle"
>10 Astronomical Events That Will Happen In Your
Lifetime</a
>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">
Alltime10s
</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
5,597,801 views • Apr 24, 2017
</div>
</div>
<!-- <div class="recommended__liveNow">LIVE NOW</div> -->
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
<section class="recommended__recommendedVideo flexRow">
<a href="https://youtu.be/FNk2NYW-13k">
<img
src="https://i.ytimg.com/vi/FNk2NYW-13k/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLCBdBHn2fBVhvBzqxhQaVU8_RMloA"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<p>8:33</p>
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://youtu.be/FNk2NYW-13k"
class="recommended__recVidTitle"
>What You Need To Do To Become A Great Developer
</a>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">
Web Dev Simplified
</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
69,198 views • Jan 18, 2020
</div>
</div>
<!-- <div class="recommended__liveNow">LIVE NOW</div> -->
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
<section class="recommended__recommendedVideo flexRow">
<a href="https://youtu.be/DDU-rZs-Ic4">
<img
src="https://i.ytimg.com/vi/DDU-rZs-Ic4/hqdefault_live.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBn9R2zCVngFRWRloh3P30eeKdYmA"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<p></p>
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://youtu.be/DDU-rZs-Ic4"
class="recommended__recVidTitle"
>NASA Earth From Space - Earth Viewing cameras ISS feed
</a>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">
Space (Official)
</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
151 watching
</div>
</div>
<div class="recommended__liveNow">LIVE NOW</div>
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
<section class="recommended__recommendedVideo flexRow">
<a href="https://youtu.be/UfcAVejslrU">
<img
src="https://i.ytimg.com/vi/UfcAVejslrU/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLAMHnXWRDrWgWQZ8-t9LVO2Yz4M7Q"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<p>8:09</p>
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://youtu.be/UfcAVejslrU"
class="recommended__recVidTitle"
>Marconi Union - Weightless (Official Video)</a
>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">
JustMusicTV
</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
69,711,837 views • Sep 4, 2014
</div>
</div>
<!-- <div class="recommended__liveNow">LIVE NOW</div> -->
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
<section class="recommended__recommendedVideo flexRow">
<a href="https://youtu.be/KwsW-iCToEY">
<img
src="https://i.ytimg.com/vi/KwsW-iCToEY/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLCr90KBvYwK89ah8QYn56kTijdE2A"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<p>11:45</p>
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://youtu.be/KwsW-iCToEY"
class="recommended__recVidTitle"
>The incredible physics behind quantum computing | Brian
Greene, Michio Kaku, & more | Big Think
</a>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">
Big Think
</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
135,124 views • Jan 15, 2021
</div>
</div>
<!-- <div class="recommended__liveNow">LIVE NOW</div> -->
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
<section class="recommended__recommendedVideo flexRow">
<a href="https://youtu.be/JGXi_9A__Vc">
<img
src="https://i.ytimg.com/vi/JGXi_9A__Vc/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLDFXEhlK_Dog6YiyQzCkHRW21W6Kw"
alt="thumbnail"
/>
<div class="recommended__thumbnailContainer--hover">
<button>
<img src="images/clock.svg" alt="watch later" />
</button>
<button>
<img
src="images/playlist-play.svg"
alt="add to playlist"
/>
</button>
<p>7:21</p>
</div>
</a>
<div class="recommended__recommendedInfo">
<a
href="https://youtu.be/JGXi_9A__Vc"
class="recommended__recVidTitle"
>Everything You Need to Know About Planet Earth
</a>
<div class="recommended__recVidInfo">
<div class="recommended__recVidAuthor pointer">
Kurzgesagt - In a Nutshell
</div>
<div class="recommended__recVidViewsAndDateContainer">
<div class="recommended__recVidViews">
10,917,409 views • Aug 4, 2014
</div>
</div>
<!-- <div class="recommended__liveNow">LIVE NOW</div> -->
</div>
</div>
<div class="recommended__recVidThreeDots pointer">
<img src="images/dots-vertical-thumb.svg" alt="options" />
</div>
</section>
</section>
</main>
</body>
</html>