-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Movie App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<span>
<a href="index.html">
<img class="header__icon"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/IMDB_Logo_2016.svg/2560px-IMDB_Logo_2016.svg.png" />
</a>
<a id="toprated">TOP RATED</a>
<a id="nowplaying">NOW PLAYING</a>
<a id="upcoming">UPCOMING</a>
</span>
<form id="form">
<input type="text" placeholder="search" id="search" class="search" autocomplete="off">
</form>
</header>
<div id="tags"></div>
<main id="main"></main>
<div id="movie-detail" class="movie-detail">
</div>
<div class="pagination mr" id="pagination">
<div class="page disabled" id="prev">Previous Page</div>
<div class="current" id="current">1</div>
<div class="page" id="next">Next Page</div>
</div>
<script src="script.js"></script>
</body>
</html>