-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./img/js.png">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>7DaysOfCode - JavaScript</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=Poppins:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<header class="top">
<a href="./"><h1 class="page-title">Popular Movies</h1></a>
<form>
<div>
<input maxlength="100" name="search-movie" id="search" class="search" type="search" placeholder="Search for Movies or TV Shows...">
<button id="search-btn" type="submit"></button>
</div>
</form>
<div class="checkbox-container">
<label>Show only my favorite movies
<input type="checkbox" name="favorite">
<span class="checkmark"></span>
</label>
</div>
</header>
<main>
<section class="movies-list">
</section>
</main>
</body>
<script src="./js/script.js" type="module"></script>
</html>