-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="index.css">
<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">
</head>
<body>
<div class="hero">
<h1>Find your film</h1>
<a href="/watchlist.html"><p>My Watchlist</p></a>
</div>
<div class="form" >
<div>
<img src="/img/search.png">
<input id="input" type="text" placeholder="Search for a movie" required>
</div>
<button id="search" >Search</button>
</div>
<div id="movies" class="movies">
<div class="idle">
<img src="/img/vid-logo.png">
<h2>Start exploring</h2>
</div>
</div>
<script src="/index.js" type="module"></script>
</body>
</html>