generated from CodeYourFuture/tv-show-dom-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 882 Bytes
/
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
<!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 | Nagehan Uyumaz (Nagehan1)</title>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</head>
<header>
<h1> TV Shows!</h1>
<img src="/images/images.jpeg" alt="">
<footer class="footer">
This content is from <a href="https://www.tvmaze.com/">TV MAZE</a>
</footer>
</header>
<body>
<div id="root">
<div id="controls">
<select id="showSelect"></select>
<select id="episodeSelect"></select>
<input id="searchInput" type="text" placeholder="your search term..." />
<span id="countDisplay">Displaying n episodes</span>
</div>
<div id="episodes"></div>
</div>
<script src="script.js"></script>
</div>
</body>
</html>