-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (56 loc) · 1.66 KB
/
index.html
File metadata and controls
64 lines (56 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!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 | Chizim Chinuru (Scarabeo7)</title>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<h1>DOM TV Shows Project</h1>
<div class="container">
<div id="search-wrapper">
<label id="selector">
<select id="show-dropdown" name="listed-shows">
<option value="all">All Shows</option>
</select>
</label>
<button type="button" class="btn btn-primary" id="button">
Return to All Shows
</button>
<input
id="searchBar"
type="text"
name="searchBar"
placeholder="Search"
/>
<input
id="searchShow"
type="text"
name="searchBar"
placeholder="Search"
/>
<p id="display-text"></p>
</div>
</div>
<div id="main-container" class="container"></div>
<footer>
<hr />
<p>
© The data for this project has (originally) come from
<a href="https://www.tvmaze.com/api#licensing" target="_blank"
>TVMaze.com</a
>
</p>
</footer>
<!-- Loads a provided function called getAllShows() which returns all episodes -->
<script src="shows.js"></script>
<!-- Loads YOUR javascript code -->
<script src="script.js"></script>
</body>
</html>