-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 958 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Top 25</title>
</head>
<body>
<header>
<h1>Official Top 25 Narrative Feature Films</h1>
</header>
<main>
<section>
<input type="text" placeholder="What movie or genre of movie are you looking for?" id="campo-pesquisa">
<button onclick="pesquisar()">Search</button>
</section>
<section class="resultados-pesquisa" id="resultados-pesquisa">
</section>
</main>
<footer>
<p>
© Made by Felipe Muniz in Natal - Brazil. Based on Dave Vis' Letterboxd list.
</p>
<p>
Contac Us: [email protected]
</p>
</footer>
<script src="dados.js"></script>
<script src="app.js"></script>
</body>
</html>