generated from CodeYourFuture/tv-show-dom-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.08 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
<!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 | Farzaneh Haghani (farzaneh-haghani)</title>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body>
<section class="nav">
<select name="selectShows" id="selectShows">
<option value="empty">Please select a show</option>
</select>
<select name="selectEpisodes" id="selectEpisodes">
<option value="all">All Episodes</option>
</select>
<input type="text" id="liveSearch" placeholder="Search..." />
<p id="counter"></p>
</section>
<div id="root"></div>
<!-- Loads a provided function called getAllEpisodes() which returns all episodes -->
<script src="shows.js"></script>
<footer>
The data has (originally) come from
<a href="https://www.tvmaze.com">TVMaze</a>
</footer>
<!-- Loads YOUR javascript code -->
<script src="script.js"></script>
</body>
</html>