-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (38 loc) · 1.46 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
<!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">
<link rel="icon" type="image/x-icon" href="https://cdn-icons-png.flaticon.com/512/1384/1384060.png">
<link rel="stylesheet" type="text/css" href="your_website_domain/css_root/flaticon.css">
<title>Youtube</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/all.css">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="navBar">
<div id="logo">
<i class="fas fa-bars"></i>
<img src="https://cdn.mos.cms.futurecdn.net/8gzcr6RpGStvZFA2qRt4v6-1200-80.jpg" alt="">
</div>
<div id="center">
<div id="search">
<input type="text" id="video" placeholder="Search for videos">
<span onclick="searchVideos()">
<i class="fas fa-search "></i>
</span>
</div>
</div>
<div id="end">
<i class="fas fa-microphone"></i>
<i class="fas fa-video"></i>
<i class="fas fa-th"></i>
<i class="fas fa-bell"></i>
<i class="fas fa-user-circle"></i>
</div>
</div>
<div id="videodiv"></div>
</body>
</html>
<script src="./index.js"></script>