-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (96 loc) · 3.78 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
<!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" />
<title>Yutube.com</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<nav class="navbar">
<div class="toggle-btn">
<span></span>
<span></span>
<span></span>
</div>
<img
src="https://lh3.googleusercontent.com/NoH5jn0ZNLP0uUMKPOhHBqDPGaseCtaQfBhxExSNf6L_zXB3r7spA4AVNXkLESSpVUwwvZ507yGxM_3dk7havspHQekYDwKk1v6XjA"
class="logo"
alt=""
/>
<div class="search-box">
<input type="text" class="search-bar" placeholder="Search" />
<button class="search-btn">
<img
src="https://cdn-icons-png.flaticon.com/128/482/482631.png"
alt=""
/>
</button>
</div>
<div class="user-options">
<img
src="https://cdn-icons-png.flaticon.com/128/711/711245.png"
alt=""
class="icon"
/>
<img
src="https://cdn-icons-png.flaticon.com/128/3602/3602145.png"
alt=""
class="icon"
/>
<img
src="https://cdn-icons-png.flaticon.com/128/847/847455.png"
alt=""
class="icon"
/>
</div>
<div class="user-dp">
<img src="img/pasport.jpg" alt="" />
</div>
</nav>
<!-- sidebar -->
<div class="side-bar">
<a href="#" class="links"><img src="img/home.png" alt="" />Home</a>
<a href="#" class="links"><img src="img/explore.png" alt="" />Explore</a>
<a href="#" class="links"><img src="https://logowik.com/content/uploads/images/t_youtube-shorts-black3609.jpg" alt="" />Shorts</a>
<a href="#" class="links"><img src="img/subscriptions.png" alt="" />Subscriptions</a>
<hr class="seperator" />
<a href="#" class="links"><img src="img/library.png" alt="" />Library</a>
<a href="#" class="links"><img src="img/history.png" alt="" />History</a>
<a href="#" class="links"
><img src="img/watch later.png" alt="" />Watch later</a
>
<a href="#" class="links"><img src="https://www.freepnglogos.com/uploads/youtube-tv-png/youtube-tv-youtube-watch-record-live-apk-download-from-moboplay-21.png" alt="" />Library</a>
<a href="#" class="links"
><img
src="https://www.nicepng.com/png/detail/207-2079423_youtube-playlist-icon-youtube-playlist-logo-png.png"
alt=""
/>Playlist</a
>
<a href="#" class="links"><img src="img/like.png" alt="" />Like video</a>
<a href="#" class="links"><img src="https://www.iconpacks.net/icons/2/free-arrow-down-icon-3101-thumb.png" alt=""/>Show more</a>
</div>
<!-- filter -->
<div class="filters">
<button class="filter-options active">All</button>
<button class="filter-options">CSS</button>
<button class="filter-options">Web development</button>
<button class="filter-options">Python</button>
<button class="filter-options">Entertainment</button>
<button class="filter-options">Marvel</button>
<button class="filter-options">Javascript</button>
<button class="filter-options">Artificial Intelligence</button>
<button class="filter-options">Machine Learning</button>
<button class="filter-options">JAVA</button>
<button class="filter-options">Android</button>
<button class="filter-options">Apple</button>
<button class="filter-options">Trending</button>
</div>
<!-- Video -->
<div class="video-container">
<!-- -->
</div>
</body>
</html>
<script src="index.js"></script>