-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 881 Bytes
/
index.html
File metadata and controls
34 lines (29 loc) · 881 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script defer src="./src/script.js"></script>
<title>Movie_DB</title>
</head>
<body>
<main class="search_main">
<section class="search_top">
<h1>Find your film</h1>
<a href="./watchlist.html" class="nextPage">My Watchlist</a>
</section>
<section class="input_search">
<form class="search_movie">
<input type="search" name="movieSearchBar" id="movie_search_input" onfocus="this.value=''">
<button type="submit" class="search_submit">Search</button>
</form>
</section>
</main>
<section class="search_bottom">
<div class="explore_icon">
<img src="./public/film icon big.png" alt="">
</div>
</section>
</body>
</html>