-
Notifications
You must be signed in to change notification settings - Fork 0
/
shows.html
33 lines (30 loc) · 920 Bytes
/
shows.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Movie-Show App</title>
<link rel="shortcut icon" href="./images/favicon.png">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section class="main">
<header>
<h1>TV Show Search</h1>
<form action="" id="form">
<input type="text" class="search" placeholder="Search..." />
</form>
</header>
<div class="container shows-container">
<p>Popular Tv Shows
<div class="switch">
<a href="index.html"> Popular Movies</a>
<a class="active" href="shows.html"> Popular TV Show</a>
</div>
</p>
<div class="shows"></div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>