-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
225 lines (218 loc) · 7.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/general.css" />
<link rel="stylesheet" href="styles/header.css" />
<link rel="stylesheet" href="styles/video.css" />
<link rel="stylesheet" href="styles/sidebar.css" />
<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:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<title>YouTube</title>
</head>
<body>
<header class="header">
<!--tags like <header>, <nav>, <section> are same as div but they are useful for search engines and reading devices-->
<div class="left-section">
<img class="menu" src="icons/hamburger-menu.svg" />
<img class="youtube-logo" src="icons/youtube-logo.svg" />
</div>
<div class="middle-section">
<input class="search-bar" type="text" placeholder="Search" />
<button class="search-button">
<img
class="search-icon"
src="icons/search_FILL0_wght400_GRAD0_opsz24.svg"
/>
<div class="tooltip">Search</div>
</button>
<buton class="voice-search-button">
<img
class="voice-search-icon"
src="icons/mic_FILL0_wght400_GRAD0_opsz24.svg"
/>
<div class="tooltip">Search with your voice</div>
</buton>
</div>
<div class="right-section">
<div class="video-upload-container">
<img class="video-upload-icon" src="icons/upload.svg" />
<div class="tooltip">Create</div>
</div>
<div class="youtube-apps-container">
<img class="youtube-apps-icon" src="icons/youtube-apps.svg" />
<div class="tooltip">YouTube apps</div>
</div>
<div class="notifications-icon-container">
<img class="notification-icon" src="icons/notifications.svg" />
<div class="tooltip">Notifications</div>
<div class="notifications-count">5</div>
</div>
<div class="profile-image-container">
<img
class="profile-picture"
src="channel-pictures/pinaticWithGrain.JPG"
/>
<div class="tooltip">plz sub me</div>
</div>
</div>
</header>
<nav class="sidebar">
<div class="sidebar-link">
<img src="icons/home.svg" />
<div>Home</div>
</div>
<div class="sidebar-link">
<img src="icons/explore.svg" />
<div>Explore</div>
</div>
<div class="sidebar-link">
<img src="icons/subscriptions.svg" />
<div>Subscriptions</div>
</div>
<div class="sidebar-link">
<img src="icons/originals.svg" />
<div>Originals</div>
</div>
<div class="sidebar-link">
<img src="icons/youtube-music.svg" />
<div>YouTube Music</div>
</div>
<div class="sidebar-link">
<img src="icons/library.svg" />
<div>Library</div>
</div>
</nav>
<main>
<section class="video-grid">
<div class="video-preview">
<div class="thumbnail-row">
<img class="thumbnail" src="Thumbnails/thumbnail-1.webp" />
<div class="video-time">14:20</div>
</div>
<div class="video-info-grid">
<div class="channel-picture">
<img
class="profile-image"
src="channel-pictures/channel-1.jpeg"
/>
</div>
<div class="video-info">
<p class="video-title">
Talking Tech and AI with Google CEO Sundar Pichai!
</p>
<p class="video-author">Marques Brownlee</p>
<p class="video-stats">4.2M views · 2 years ago</p>
</div>
</div>
</div>
<div class="video-preview">
<div class="thumbnail-row">
<img class="thumbnail" src="Thumbnails/thumbnail-2.webp" />
<div class="video-time">8:22</div>
</div>
<div class="video-info-grid">
<div class="channel-picture">
<img
class="profile-image"
src="channel-pictures/channel-2.jpeg"
/>
</div>
<div class="video-info">
<p class="video-title">Try Not To Laugh Challenge #9</p>
<p class="video-author">Markiplier</p>
<p class="video-stats">20M views · 6 years ago</p>
</div>
</div>
</div>
<div class="video-preview">
<div class="thumbnail-row">
<img class="thumbnail" src="Thumbnails/thumbnail-3.webp" />
<div class="video-time">0:47</div>
</div>
<div class="video-info-grid">
<div class="channel-picture">
<img
class="profile-image"
src="channel-pictures/channel-3.jpeg"
/>
</div>
<div class="video-info">
<p class="video-title">Getting Over It 😆 | #shorts</p>
<p class="video-author">Pinatic</p>
<p class="video-stats">111 views · 2 years ago</p>
</div>
</div>
</div>
<div class="video-preview">
<div class="thumbnail-row">
<img class="thumbnail" src="Thumbnails/thumbnail-4.webp" />
<div class="video-time">22:09</div>
</div>
<div class="video-info-grid">
<div class="channel-picture">
<img
class="profile-image"
src="channel-pictures/channel-4.jpeg"
/>
</div>
<div class="video-info">
<p class="video-title">
The Simplest Math Problem No One Can Solve - Collatz Conjecture
</p>
<p class="video-author">Veritasium</p>
<p class="video-stats">37M views · 2 years ago</p>
</div>
</div>
</div>
<div class="video-preview">
<div class="thumbnail-row">
<img class="thumbnail" src="Thumbnails/thumbnail-5.webp" />
<div class="video-time">11:17</div>
</div>
<div class="video-info-grid">
<div class="channel-picture">
<img
class="profile-image"
src="channel-pictures/channel-5.jpeg"
/>
</div>
<div class="video-info">
<p class="video-title">
Kadane's Algorithm to Maximum Sum Subarray Problem
</p>
<p class="video-author">CS Dojo</p>
<p class="video-stats">662K views · 7 years ago</p>
</div>
</div>
</div>
<div class="video-preview">
<div class="thumbnail-row">
<img class="thumbnail" src="Thumbnails/thumbnail-6.webp" />
<div class="video-time">19:59</div>
</div>
<div class="video-info-grid">
<div class="channel-picture">
<img
class="profile-image"
src="channel-pictures/channel-6.jpeg"
/>
</div>
<div class="video-info">
<p class="video-title">
Anything You Can Fit In The Circle I'll Pay For
</p>
<p class="video-author">MrBeast</p>
<p class="video-stats">273M views · 3 years ago</p>
</div>
</div>
</div>
</section>
</main>
</body>
</html>