-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 902 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-br0">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brasil & Música</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Bandas Nacionais</h1>
</header>
<main>
<section>
<input type="text" placeholder="Digite o nome da banda" id="campo-pesquisa">
<button onclick="pesquisar()">Pesquisar</button>
</section>
<section class="resultados-pesquisa"
id="resultados-pesquisa">
</section>
</main>
<footer>
<p>2024- Bandas Nacionais- Todos os direitos reservados</p>
<p>Entre em contato com: [email protected]</p>
</footer>
<script src="dados.js"></script>
<script src="app.js"></script>
</body>
</html>