-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.3 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.3 KB
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>
<head>
<meta charset="utf-8">
<title>Youtube Search</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" type="text/css" href="./CSS/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<header>
<h1>Youtube SearchEngine</h1>
</header>
<main>
<form class="searchForm">
<fieldset class="searchField">
<label for="videoSearchBox"> <i class="material-icons" style="font-size:36px;vertical-align:middle;color:#BA1F33">search</i> </label>
<input id="videoSearchBox" class="searchBox" type="text" placeholder="Video Search..." />
</fieldset>
</form>
<div class="resultDiv">
<table align="center">
<tbody class="results"><tbody>
</table>
</div>
<footer>
<button id="prevPage" class="pageButtons">Prev Page</button>
<button id="nextPage" class="pageButtons">Next Page</button>
</footer>
</main>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>