generated from CodeYourFuture/tv-show-dom-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (57 loc) · 1.76 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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 | Afsha (Afsha10)</title>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<script src="script.js" defer ></script>
</head>
<body>
<header class="header">
<div class="title-holder">
<h1>TV Show Guide</h1>
</div>
</header>
<div class="big-button-holder">
<button id="show-listing-button">View Show Listing</button>
</div>
<div class="nav-bar-holder">
<nav class="nav-bar">
<select id="show-select-html">
<option value="">Select a Show</option>
</select>
<!-- <select id="season-select-html">
<option value="">Select a Season</option>
</select> -->
<select id="episode-select-html" style="display: none">
<option value="">Select an Episode</option>
</select>
<input
type="text"
autocomplete="off"
id="episode-search-input"
placeholder="Search"
/>
<input
type="text"
autocomplete="off"
id="show-search-input"
placeholder="Search"
/>
<span class="display-show-search"></span>
<span class="display-episode-search"></span>
</nav>
</div>
<div id="root">
</div>
<!-- Loads a provided function called getAllEpisodes() which returns all episodes -->
<script src="./shows.js"></script>
<!-- <script src="shows.js"></script> -->
<!-- Loads YOUR javascript code -->
<footer id="footer">
<p id="source">Source: TVMaze.com</p>
</footer>
</body>
</html>