-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (69 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;700&family=Righteous&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<title>Movies API</title>
</head>
<body id="homepage">
<!-- Navbar -->
<header>
<nav>
<div id="logo"><p>Lights Out</p></div>
<a href="#">Home</a>
<a href="#movies-h3">Movies</a>
<a href="#tv-h3">TV Series</a>
<form action="search.html">
<input class="searchbox" type="text" placeholder="Search" />
<input class="search-submit" type="submit" value="" />
</form>
</nav>
</header>
<main>
<!-- Intro -->
<div class="intro-container">
<h1>Browse the latest Movies and TV Series</h1>
<p>
Browse the latest and greatest movies and tv series from around the
world. Learn what they are about by searching for what your are
looking for. We provide a description and rating for everything!
</p>
</div>
<!-- Movie List -->
<div class="main-container">
<div class="category">
<h3 id="movies-h3">Movies</h3>
<button id="latest-btn">Latest</button>
<button id="popular-btn">Popular</button>
<button id="rating-btn">Top-rated</button>
</div>
<div class="movie-list"></div>
<button class="prev prev-movie"></button>
<button class="next next-movie"></button>
</div>
<!-- TV Series List -->
<div class="main-container">
<div class="category">
<h3 id="tv-h3">TV Series</h3>
<button id="tv-latest-btn">Latest</button>
<button id="tv-popular-btn">Popular</button>
<button id="tv-rating-btn">Top-rated</button>
</div>
<div class="tv-list"></div>
<button class="prev prev-tv"></button>
<button class="next next-tv"></button>
</div>
</main>
<!-- Footer -->
<footer>
<a href="#">Back to top</a>
<h3>© Copyright Ahmed Muhammed 2022</h3>
</footer>
<script src="app.js"></script>
</body>
</html>