-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube.html
115 lines (106 loc) · 2.83 KB
/
youtube.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Youtube</title>
<style>
.thumbnail {
width: 300px;
display: block;
}
.video-tilte{
width: 300px;
}
.chanel{
display: block;
}
.stats{
display: inline-block;
margin-top: 0px;
}
.video-preview{
width: 300px;
display: inline-block;
}
.thumbnail1{
display: flex;
justify-content: center;
align-items: center;
height: 225px;
width: 300px;
}
.video-preview1{
margin: 10px;
}
#background-video {
width: 100vw;
height: 100vh;
object-fit: cover;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: -1;
}
</style>
</head>
<body>
<video id="background-video" autoplay loop muted >
<source src="Monkey Circle Meme (Super Mario World ending).mp4" type="video/mp4">
</video>
<input class="search-bar" type="text" placeholder="Search idiot">
<div class="video-preview">
<img class="thumbnail" src="download.jpg">
<a href="https://c.ndtvimg.com/2022-11/28qh6jqo_the-rock-raises-his-eyebrow_625x300_24_November_22.jpg?im=Resize=(1230,900)" style="font-size: 20px;">Touch me</a>
<p class="chanel">
BBC News
</p>
<p class="stats">
3M views · 6 months ago
</p>
</div>
<div class="video-preview">
<img class="thumbnail1" src="thumbnail/laudai.jpg">
<a class="video-tilte1"">
DAM VINH HUNG IS SO HANDSOME!!!
</p>
<p class="chanel">
Daddy Dam Vinh Hung
</p>
<p class="stats">
1B views · 3 days ago
</p>
</div>
<div class="video-preview">
<video autoplay loop controls width="500px">
<source src="spinningfish.mp4" type="video/mp4" >
Your browser does not support the video tag.
</video>
<p class="video-tilte">
SEXY FISH!!!
</p>
<p class="chanel">
FISHY CHANNEL
</p>
<p class="stats">
101B views · 3 days ago
</p>
</div>
<div class="video-preview1">
<video id="myVideo" autoplay controls loop width="400px">
<source src="PÚA PÚA PÚA PÚA PÚA PI PI PI PI PI PI.mp4" type="video/mp4" >
Your browser does not support the video tag.
</video>
<p class="video-tilte">
Chinese educational project
</p>
<p class="chanel">
FISHY CHANNEL
</p>
<p class="stats">
101B views · 3 days ago
</p>
</div>
</body>
</html>