-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="description" content="Put your description here.">
<title>Movie Watchlist</title>
</head>
<body>
<div class="container">
<header class="header-container">
<div class="header-flex">
<h1 class="title">Find Your Film</h1>
<a class="watchlist" href="watchlist.html">My Watchlist</a>
</div>
</header>
<section class="searchBar">
<form id="movie-search">
<div class="search">
<img src="./assets/search-icon.png" alt="search-icon" width="16" height="16" class="search-icon">
<input id="search-input" type="text" placeholder="Search for a movie"/>
</div>
<button id="search-btn" type="submit">Search</button>
</form>
</section>
<section id="movies-list">
<div class="placeholder-container">
<img src="./assets/no-movies-Icon.png" width="55" height="55" alt="no-movie-here" class="movie-placeholder">
<p>Start Exploring</p>
</div>
</section>
</div>
<script src="index.js"></script>
</body>
</html>