-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·65 lines (46 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mini YouTube</title>
<!-- Meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Vinit Shahdeo">
<meta name="description" content="Mini YouTube - A web app to search videos online and sort according to likes, views and comments">
<!-- style for home page-->
<link rel="stylesheet" href="css/style.css">
<!-- font-awesome CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<!-- Google fonts used -->
<link href="https://fonts.googleapis.com/css?family=Oxygen" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Acme" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" type="image/ico" href="./favicon.ico">
<!-- CDN for Jquery -->
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<!-- script used for YouTube API call -->
<script src="js/youtube.js" type="text/javascript"></script>
</head>
<body>
<!-- main logo - header -->
<h1 class="logo">Mini <i class="fab fa-youtube"></i> </h1>
<div class="search-container">
<input type='text' name='search' id='search' placeholder='search videos here..' class="search-input">
<span>
<select id="type" class="search-select sortedDropdown">
<span>
<option value="name">Name</option>
<option value="likes">Likes</option>
<option value="views">Views</option>
<option value="comments">Comments</option>
<option value="date">Date</option>
</span>
</select>
</span>
<span><i class="fas fa-search fa-search-1 fa-3x" onclick="search()"></i></span>
</div>
<!-- section for displaying results-->
<div id='results'> </div>
</body>
</html>