-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.2 KB
/
index.html
File metadata and controls
35 lines (34 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/scrollreveal@4"></script>
<title>Filmes Populares</title>
</head>
<body>
<header>
<h1>Filmes Populares</h1>
<div class="input_field">
<input type="text" name="pesquisar" id="pesquisar" placeholder="Digite algum filme para pesquisar">
<button id="searchBtn" class="btn-pesquisar">
<img src="assets/search-icon.svg">
</button>
</div>
<div class="checkbox_field">
<input type="checkbox" name="favoritos" id="mostrarFavoritos">
<label for="mostrarFavoritos">Mostrar meus filmes favoritos apenas</label>
</div>
</header>
<main class="container">
<section id="movieList">
</section>
</main>
<script type="module" src="js/app.js"></script>s
<script>
ScrollReveal().reveal("main", { delay: 450, duration: 800, distance: '50px'})
</script>
</body>
</html>