-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.12 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="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>HBO MAX</title>
</head>
<body>
<div class="container">
<div class="caixa-pesquisa">
<header>
<h1>House of the Dragon</h1>
<p>Obtenha aqui um resumo do seu personagem favorito.</p>
</header>
<main>
<section>
<input type="text" placeholder="Nome ou título do personagem" class="campo-pesquisa" id="campo-pesquisa">
<button onclick="pesquisar()">Pesquisar</button>
</section>
<section class="resultados-pesquisa" id="resultados-pesquisa">
</section>
</main>
</div>
</div>
<footer>
<p>2024. Todos os direitos reservas a HBO MAX</p>
<p>Contato: [email protected]</p>
</footer>
<script src="data.js"></script>
<script src="app.js"></script>
</body>
</html>