-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (91 loc) · 2.87 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
<!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>MY YOUTUBE HOME</title>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,1,0" />
<link rel="stylesheet" href="./styles/index.css">
</head>
<body>
<!-- Navbar Section Start -->
<div id="navbar">
<div>
<span class="material-symbols-outlined">
menu
</span>
</div>
<div id="logo" onclick="home()">
<img src="https://www.trustedreviews.com/wp-content/uploads/sites/54/2022/01/youtube_logo_dark-920x460.jpg"
alt="">
</div>
<div id="search_div">
<input type="text" name="search" id="search" placeholder="Search" autocomplete="off"
onchange="getSearchData()">
<span id="search_logo" class="material-symbols-outlined">
search
</span>
<span class="material-symbols-outlined">
mic
</span>
</div>
<div id="extras">
<span class="material-symbols-outlined">
video_camera_front
</span>
<span class="material-symbols-outlined">
apps
</span>
<span class="material-symbols-outlined">
notifications
</span>
<div id="profile">HJ</div>
</div>
</div>
<!-- Navbar Section Start -->
<!-- Menu Section Start -->
<div id="menu">
<div>
<span class="material-symbols-outlined">
home
</span>
<span>Home</span>
</div>
<div>
<span class="material-symbols-outlined">
explore
</span>
<span>Explore</span>
</div>
<div>
<span class="material-symbols-outlined">
subscriptions
</span>
<span>Subscriptions</span>
</div>
<div>
<span class="material-symbols-outlined">
video_library
</span>
<span>
Library
</span>
</div>
</div>
<!-- Menu Section End -->
<!-- Display Section Start -->
<!-- filter Section start -->
<div>
<input type="text" name="filter" id="filter" placeholder="Filter by channel">
<button id="fltBtn">Filter</button>
</div>
<div id="display"></div>
<!-- filter Section End -->
<!-- Display Sectin End -->
</body>
</html>
<script src="./scripts/index.js"></script>