-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 856 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>ThinkfulTube Challenge</title>
<meta name="description" content="Thinkful Youtube Search">
<link href="index.css" rel="stylesheet" type="text/css" />
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
</head>
<body>
<main role="main">
<section>
<h1>Search Youtube By Theme:</h1>
<form action="#" class="js-search-bar">
<input type="text" class="js-query" required placeholder="cat videos">
<button type="submit">Search</button>
</form>
</section>
<div class="results"></div>
</main>
<script src="index.js"></script>
</body>
</html>