-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (33 loc) · 1.43 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="bg-image">
<header>
<div class="header-text">
<h1>Find your Film</h1>
<a href="./watchlist.html">My Watchlist</a>
</div> <!-- header-text -->
<div class="search-box">
<form class="search-form">
<i class="magnifying-glass"></i>
<input id="searchTextBox" placeholder="Search for a movie" type="text">
<input value="Search" id="searchBtn" type="submit">
</form>
</div> <!-- search box -->
</header>
</div> <!-- bg-image -->
<main>
<div id="start-exploring">
<i class="film-reel"></i>
<p>Start exploring</p>
</div> <!-- start-exploring -->
<div id="movie-list">
</div> <!-- movie-list -->
<p id="errorMsg"></p>
</main>
<script src="index.js"></script>
</body>
</html>