-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (31 loc) · 1.09 KB
/
index.html
File metadata and controls
40 lines (31 loc) · 1.09 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
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TV Show Project | Tony Arora (Tony-devops)</title>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<h1> Tony Presents</h1>
<h2>TV Show DOM Project</h2>
</header>
<br><hr>
<div class ="form">
<select name = "episodes" id = "select-episode" class ="select-epi"></select>
<input id ="search" type = "text" class = "input" placeholder="Search Episodes...">
<p id = "display-episode-number" class = "display"></p>
</div>
<div id="root">
</div>
<footer>
<p class="footer-text"> Data is sourced from <a href="https://www.tvmaze.com/api" target="_blank">TV-Maze-API</a></p>
</footer>
<!-- Loads a provided function called getAllEpisodes() which returns all episodes -->
<script src="episodes.js"></script>
<!-- Loads YOUR javascript code -->
<script src="script.js"></script>
</body>
</html>