-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path123.html
80 lines (72 loc) · 3.55 KB
/
123.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
<!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="123.css">
</head>
<body>
<nav class="navbar">
<div class="toggle-btn">
<span></span>
<span></span>
<span></span>
</div>
<img src="D:\web development\vidya project\images\logo (1).png" class="logo" alt="">
<div class="search-box">
<input type="text" class="search-bar" placeholder="search">
<button class="search-btn"><img src="D:\web development\vidya project\images\search.png" alt=""></button>
</div>
<div class="user-options">
<img src="D:\web development\vidya project\images\video.png" class="icon" alt="">
<img src="D:\web development\vidya project\images\grid.png" class="icon" alt="">
<img src="D:\web development\vidya project\images\bell.png" class="icon" alt="">
<div class="user-dp">
<img src="img/profile-pic.png" alt="">
</div>
</div>
</nav>
<!-- sidebar -->
<div class="side-bar">
<a href="#" class="links active"><img src="D:\web development\vidya project\images\home.png" alt="">home</a>
<a href="#" class="links"><img src="D:\web development\vidya project\images\explore.png" alt="">explore</a>
<a href="#" class="links"><img src="D:\web development\vidya project\images\subscription.png" alt="">subscription</a>
<hr class="seperator">
<a href="#" class="links"><img src="D:\web development\vidya project\images\library.png"alt="">library</a>
<a href="#" class="links"><img src="D:\web development\vidya project\images\history.png" alt="">history</a>
<a href="#" class="links"><img src="D:\web development\vidya project\images\video.png" alt="">your video</a>
<a href="#" class="links"><img src="D:\web development\vidya project\images\watch-later.png" alt="">watch leater</a>
<a href="#" class="links"><img src="D:\web development\vidya project\images\liked video.png" alt="">like video</a>
<a href="#" class="links"><img src="D:\web development\vidya project\images\show more.png" alt="">show more</a>
</div>
<!-- filters -->
<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">trending</button>
</div>
<!-- videos -->
<div class="video-container">
<!-- <div class="video">
<img src="img/profile-pic.png" class="thumbnail" alt="">
<div class="content">
<img src="img/profile-pic.png" class="channel-icon" alt="">
<div class="info">
<h4 class="title">youtube clone 2021 | create working youtube clone</h4>
<p class="channel-name">modern web</p>
</div>
</div>
</div> -->
</div>
<script src="https://apis.google.com/js/api.js"></script>
<script src="123.js"></script>
</body>
</html>