-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
276 lines (257 loc) · 12 KB
/
index.html
File metadata and controls
276 lines (257 loc) · 12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YouTube Clone</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color:black;
color: white;
display: flex;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: black;
}
.logo {
display: flex;
align-items: center;
font-size: 20px;
}
.logo i {
color: red;
font-size: 24px;
margin-right: 5px;
}
.search-bar {
display: flex;
align-items: center;
background-color: #0b0a0a;
border: 1px solid #ccc;
border-radius: 20px;
padding: 5px 10px;
width: 30%;
}
.search-bar input {
background-color: #0b0a0a;
border: none;
color: white;
padding: 5px;
flex: 1;
}
.search-bar button {
background: none;
border: none;
color: white;
cursor: pointer;
}
.user-icons i {
margin-right: 35px;
/* padding:5px; */
font-size: 20px;
cursor: pointer;
}
.container {
display: flex;
margin-top: 60px;
width: 100%;
}
.filter-bar {
display: flex;
gap: 10px;
padding: 10px 20px;
background-color: black;
position: fixed;
top: 50px;
left: 210px;
right: 0;
white-space: nowrap;
}
.filter-bar span {
background-color: #383838;
padding: 8px 12px;
border-radius: 10px;
cursor: pointer;
}
aside {
width: 190px;
background-color: black;
padding: 20px;
height: 100vh;
position: fixed;
top: 50px;
left: 0;
}
aside ul {
list-style: none;
padding: 0;
}
aside ul li {
display: flex;
align-items: center;
padding: 10px 0;
cursor: pointer;
}
aside ul li:hover {
background-color: rgb(69, 67, 67);
border-radius: 12px;
}
aside ul li i {
margin-right: 10px;
}
#line{
border-bottom:1px solid darkgray;
margin-bottom: 10px;
}
.emoji{
padding: 10px 1px;
cursor: pointer;
border-radius:8px;
}
.emoji img{
border-radius:90%;
height: 20px;
}
main {
flex: 1;
margin-left: 260px;
margin-top: 80px;
}
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.video {
background-color: black;
border-radius: 8px;
}
.video img {
width: 100%;
border-radius: 5px;
}
.channel-name {
font-size: 14px;
color: #555;
}
</style>
</head>
<body>
<header>
<div class="logo">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white">
<path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"></path>
</svg>
<i class="fab fa-youtube"></i>
<span>YouTube</span>
</div>
<div class="search-bar">
<input type="text" placeholder="Search">
<button><i class="fas fa-search"></i></button>
</div>
<div class="user-icons">
<i class="fas fa-bell"></i>
<i class="fas fa-user-circle"></i>
</div>
</header>
<aside>
<ul>
<li> <i class="fas fa-home"></i>Home</li>
<li> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white">
<path d="M10 16.5l6-4.5-6-4.5z"></path>
<path d="M3 2h18c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2zm0 2v16h18V4H3z"></path>
</svg> Shorts</li>
<li> <i class="fas fa-play"></i> Subscriptions</i></li>
<li id="line"></li>
<li> You ></li>
<li> <i class="fas fa-history"></i> History</li>
<li> <i class="fas fa-list"></i> Playlists</li>
<li> <i class="fas fa-graduation-cap"></i> Your Courses</li>
<li> <i class="fas fa-clock"></i> Watch Later</li>
<li> <i class="fas fa-thumbs-up"></i> Liked Videos</li>
<li id="line"></li>
<li>Subscriptions</li>
<li class="emoji"> <img src="https://yt3.googleusercontent.com/er0IYBx2fOrUdTheL_zI5MRTBuAJPpBqBWqsQxvX-X3h71gjISb6K0Hp02PkE083hiN2qCRw=s160-c-k-c0x00ffffff-no-rj"> Classic Mr Bean</li>
<li class="emoji"> <img src="https://yt3.googleusercontent.com/DK_ErT9Njg9UBnekWivc9A0xULKcyU_CgO9q9-C4D3ZEE2IKCOx9C2ixxx6GLykTvQhv5Au6LQ=s160-c-k-c0x00ffffff-no-rj"> nobody</li>
<li class="emoji"> <img src="https://yt3.googleusercontent.com/66R4oaVitNG53cXITrmt9ujdkgIXGZHzVtB9WB7Wmeftre9wc_MOjXGkbMQkSvEWVYXDjhdHMg=s160-c-k-c0x00ffffff-no-rj"> Newton school technology</li>
<li class="emoji"> <img src="https://yt3.googleusercontent.com/XE7Iq8jvJ07ptMc-HxZR_V-2XgXCb0i06i4E_dypl7xSR655WXaQeglfqNuEeuwH3oM9RKVodQ=s160-c-k-c0x00ffffff-no-rj"> T-series</li>
<li class="emoji"> <img src="https://yt3.googleusercontent.com/V6A8gkySU2s3LUpXNoT8QYrRKZFzEfYzRepgVW7_nrEJLSdFcwv4ZXSmWYTAVapW3qIjMqfp=s160-c-k-c0x00ffffff-no-rj"> Oggy-Hindi</li>
</ul>
</aside>
<div class="filter-bar">
<span>All</span>
<span>Dances</span>
<span>Korean cuisines</span>
<span>Music</span>
<span>Variety shows</span>
<span>Oggy and the Cockroaches</span>
<span>Korean dramas</span>
<span>Shark Tank</span>
<span>Street food</span>
<span>Concert dances</span>
<span>></span>
</div>
<div class="container">
<main>
<div class="video-grid">
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/9dTGIe8BcSo?si=_MWLFbVZpui7kWwi" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">Season Of Love - Music Video - Gamma Skies, Victor Lundberg</p>
<p class="channel-name">MSA</p>
</div>
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/dT9ih0FVtEY?si=7BZOO9X8ZFJriu0D" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">Promise</p>
<p class="channel-name">Jimin</p>
</div>
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/iqGAW57EudQ?si=Y2WV09PNTvExWRY1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">About You - The 1975</p>
<p class="channel-name">Tinted heart</p>
</div>
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/b_CpWmkhwq0?si=qU3bFI8w5EBjxdAS" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">Those eyes</p>
<p class="channel-name">New west</p>
</div>
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/98zHKN-xSHk?si=ua9ml-UUfQ9942B7" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">Blue</p>
<p class="channel-name">yung kai</p>
</div>
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/DqxS0ZqYQCw?si=v62n8z0S7K6gVhOx" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">Taarak mehta ka ooltah chashmah</p>
<p class="channel-name">Sony SAB</p>
</div>
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/fsdZGAwb62o?si=FD25qcGNbE0CMotn" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">Shark Tank INDIA</p>
<p class="channel-name">Set India</p>
</div>
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/D7j2rKoEGAA?si=-rBAnEqGIUYwIJ_-" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">Doremon bg music</p>
<p class="channel-name">Serene</p>
</div>
<div class="video">
<iframe width="390" height="315" src="https://www.youtube.com/embed/T0NEiW5S8k8?si=tVObSHJiTu3r4LPZ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="video-title">Jungkook - Decalcomania (visual lyric video)</p>
<p class="channel-name">Jungkook</p>
</div>
</div>
</main>
</div>
</body>
</html>