-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.95 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Watchlist</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div class="app-container">
<div class="header-and-form-container">
<h1 class="active-page">Find your film</h1>
<a href="./watchlist.html" class="inactive-page">View your watchlist</a>
<form class="form">
<div class="form-icon-input">
<i class="fa-solid fa-magnifying-glass"></i>
<input
type="text"
placeholder="Search for a movie"
class="search-input"
id="search-input"
aria-label="Search for a movie"/>
</div>
<button class="search-btn" id="search-btn">Search</button>
</form>
</div>
<section class="movie-list-section" id="search-result-section">
<!-- After a search, results go here. Otherwise, the placeholder text below will display. -->
<i class="fa-solid fa-film"></i>
<p class="placeholder-text">Start exploring</p>
</section>
</div>
<script type="module" src="./js/index.js"></script>
</body>
</html>