-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shows and Movies API | Devansh Dubey</title>
<link rel="stylesheet" href="./movieAPI.css">
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
</head>
<body>
<header class="" id="header">
<h1>Shows and Movies API</h1>
<form id="input-box">
<input type="text" name="q" id="queryBox" autocomplete="off" placeholder="Search for TV Shows...">
<button id="submit" type="button">Search</button>
</form>
</header>
<section class="filterBox">
<ul>
<li class="list active" data-filter="All">All</li>
<li class="list" data-filter="series">Series</li>
<li class="list" data-filter="movie">Movies</li>
</ul>
</section>
<section id="main-content"></section>
<footer>
<p>Designed with 💖 By: Devansh Dubey</p>
</footer>
<script src="./movieAPI.js"></script>
</body>
</html>