generated from CodeYourFuture/Project-TV-Show
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.04 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
<!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 | Pedram (pedram-am) & Fikret (fikretellek)</title>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="sort">
<label for="selectEpisode"
>Choose an episode:
<select name="selectEpisode" id="select"></select>
</label>
<label for="q" id="search"
>Search a keyword:
<input type="search" id="q" name="q" placeholder="Search term" />
</label>
<p>
Displaying <span id="countOfEpisodes"></span>/<span
id="countOfAllEpisodes"
></span>
episodes
</p>
</div>
<div id="root"></div>
<p>
This content is from
<a href="https://www.tvmaze.com/" target="_blank">TVMaze.com</a>
</p>
<!-- Loads YOUR javascript code -->
<script src="script.js"></script>
</body>
</html>