-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.38 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
<!DOCTYPE html>
<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">
<!-- Google Fonts -->
<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;900&display=swap" rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" href="./styles/index.css">
<title>Movie Watchlist</title>
</head>
<body>
<body>
<header class="hero" id="hero">
<h1 class="hero-title">Find your film</h1>
<p><a href="watchlist.html" class="hero-link">My Watchlist</a></p>
</header>
<div class="container">
<form class="search-form" id="search-form">
<input aria-label="search movie" type="text" class="search-input" name="search" id="search"
placeholder=" Search for a movie">
<button type="submit" class="search-btn" id="search-btn" disabled>Search</button>
</form>
<main>
<div class="welcome-page" id="welcome-page">
<img class="welcome-page-bg" src="images/Icon.png" alt="Tape Negative">
<p class="welcome-page-body">Start exploring</p>
</div>
</main>
</div>
<script src="index.js"></script>
</body>
</body>
</html>