-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1.61 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
<!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="icon" href="https://cdn-icons-png.flaticon.com/512/174/174883.png" type="image/icon type">
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="./style.css" />
<title>Youtube</title>
</head>
<body>
<!-- navbar start -->
<nav class="header">
<!-- imported from components -->
</nav>
<!-- navbar ends -->
<div class="main_body">
<!-- slide-bar starts -->
<div class="sidebar">
</div>
<!-- slide-bar ends -->
<!-- video container -->
<div class="container">
<div class="filter_container">
<div>All</div>
<div>Mixes</div>
<div>Movies</div>
<div>Music</div>
<div class="remove_small_screen">Website</div>
<div class="remove_small_screen">HTML</div>
<div class="remove_small_screen">CSS</div>
<div class="remove_small_screen">Stock markets</div>
<div class="remove_small_screen">UX Design</div>
<div class="remove_small_screen">Cartoon</div>
<div class="remove_small_screen">Hollywood</div>
</div>
<div class="video_container">
<!-- searched videos -->
</div>
</div>
</div>
</body>
</html>
<script src="./app.js" type="module"></script>