generated from CodeYourFuture/tv-show-dom-project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (49 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
<!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 | Selahaddin Alan (justsealan)</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="root">
<!-- Search TV Show -->
<div>
<h1>TV Show Project</h1>
<form action="index.php" method="get" class="input-group mb-3">
<select class="form-select" id="inputGroupSelect05">
<option id="allSeasons" selected>Select a TV Shows</option>
</select>
<select class="form-select" id="inputGroupSelect04">
<option id="allEpisodes" selected>All Episodes</option>
</select>
<input
type="text"
class="form-control w-50"
id="search"
name="search"
placeholder="Search Episodes"
/>
<!-- <button type="submit" class="btn btn-primary">Search</button> -->
<span class="input-group-text" id="basic-addon2"
>Got ... episodes</span
>
</form>
</div>
<!-- TV Show List with Grid Cards -->
<div class="row row-cols-1 row-cols-md-4 g-4"></div>
</div>
<!-- Loads a provided function called getAllShows() which returns all tv shows -->
<script src="shows.js"></script>
<!-- Loads YOUR javascript code -->
<script src="script.js"></script>
</body>
</html>