This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathresults.html
47 lines (44 loc) · 1.93 KB
/
results.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YouTube</title>
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<a href="index.html"><img src="img/logo.PNG" class="logo" alt=""></a>
<div class="search-box">
<input type="text" class="search-bar" placeholder="">
<button class="search-btn"><img src="img/search.PNG" alt=""></button>
</div>
</nav>
<div class="side-bar">
<a href="#" class="links active"><img src="img/popular.jpg" alt="">Popular on YouTube</a>
<a href="#" class="links"><img src="img/music.jpg" alt="">Music</a>
<a href="#" class="links"><img src="img/sports.jpg" alt="">Sports</a>
<a href="#" class="links"><img src="img/gaming.jpg" alt="">Gaming</a>
<a href="#" class="links"><img src="img/movie.jpg" alt="">Movies</a>
<a href="#" class="links"><img src="img/tv.jpg" alt="">TV Shows</a>
<a href="#" class="links"><img src="img/news.jpg" alt="">News</a>
<a href="#" class="links"><img src="img/spotlight.jpg" alt="">Spotlight</a>
</div>
<!-- videos -->
<div class="video-container">
<!-- <div class="video">
<img src="img/profile-pic.jpg" class="thumbnail" alt="">
<div class="content">
<img src="img/profile-pic.jpg" 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="search.js"></script>
</body>
</html>