-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (31 loc) · 1.07 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
37
38
39
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Animes</h1>
</header>
<main>
<section class="search-section">
<form>
<input type="text" placeholder="Pesquisar Anime" id="campo-pesquisa">
<button type="button" id="botao-pesquisa">Buscar</button>
</form>
</section>
<section class="resultados-pesquisa" id="resultados-pesquisa">
</section>
</main>
<footer>
<p>Desenvolvido por Laura durante a Imersão Dev com Google Gemini da Alura.</p>
<a href="https://linkedin.com/in/laura-gabriely-barbosa-604574266">LinkedIn</a> <br>
<a href="mailto:[email protected]"> [email protected]</a><br>
</footer>
<script src="dados.js"></script>
<script src="app.js"></script>
</body>
</html>