-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 2.1 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">
<title>Mini-You Tube</title>
<link rel="stylesheet" href="./youtube.css">
<meta name="description" content="Mini Youtube Player">
<meta name="keywords" content="css, html, java script, js">
<meta name="author" content="Venkatesulu">
<link rel="icon" type="image/x-icon" href="./favicon.jpg">
</head>
<body>
<div id="navbar">
<!-- Nav Bar Left part -->
<div id="nav_left">
<div><img src="https://css-tricks.com/wp-content/uploads/2012/10/threelines.png" alt="youtube-logoz"></div>
<div><img src="https://download.logo.wine/logo/YouTube/YouTube-Logo.wine.png" alt="youtube-logo"></div>
</div>
<!-- Nav Bar Center part -->
<div id="nav_middle">
<div>
<input type="text" id="searchInput" placeholder="Search..." name="search" oninput="debounce(main,1000)"></input>
</div>
<div>
<img src="https://www.iconpacks.net/icons/1/free-microphone-icon-342-thumb.png" alt="youtube-logo">
</div>
</div>
<!-- Nav Bar Right part -->
<div id="nav_right">
<div><img
src="https://previews.123rf.com/images/martialred/martialred1810/martialred181000014/113393140-agregue-un-nuevo-video-o-cargue-una-pel%C3%ADcula-cree-un-%C3%ADcono-de-vector-de-arte-de-l%C3%ADnea-de-medios-para.jpg" alt="youtube-logo"
style="margin-top:15px"></div>
<div><img src="https://icon-library.com/images/google-apps-icon-png/google-apps-icon-png-27.jpg" alt="youtube-logo"></div>
<div><img
src="https://previews.123rf.com/images/illizium/illizium1903/illizium190300113/119765682-notification-icon-vector-bell-icons-in-line.jpg" alt="youtube-logo">
</div>
</div>
</div>
<hr>
<div id="searchResults">
</div>
</body>
<script src="./script.js">
</script>
</html>