-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.55 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
<!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>Youtube</title>
<link rel="icon" href="https://img.icons8.com/color/2x/youtube-play.png">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<nav>
<a href="./index.html"><img src="https://developers.google.com/site-assets/logo-youtube.svg" alt="404 Error" width="40px"><h3>YouTube</h3> </a>
<div class="qu">
<input type="text" id="query" placeholder="Search">
<button onclick="search()"><img src="https://img.icons8.com/ios-filled/2x/search.png" alt="404 Error" width="10px"></button>
</div>
<div id="mic">
<img src="https://img.icons8.com/external-kmg-design-glyph-kmg-design/2x/external-mic-ui-essential-kmg-design-glyph-kmg-design.png" alt="404 Error" width="20px">
</div>
<div id="create">
<img src="./icons8-create-video-32.png" alt="404 Error">
</div>
<div id="apps">
<img src="https://img.icons8.com/ios/344/squared-menu.png" alt="404 Error" width="20px">
</div>
<div id="profile">
<img src="https://img.icons8.com/material-rounded/344/user-female-circle.png" alt="404 Error" width="20px">
</div>
</nav>
<hr>
<div id="filt">
<button onclick="filter()">Filter By Name</button>
</div>
<div id="container"></div>
</body>
</html>
<script src="./main.js"></script>