-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 914 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
<!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="styles.css" />
<title>EventosTech</title>
</head>
<body>
<header>
<h1>Eventos tech 2025</h1>
</header>
<main>
<section>
<input
type="text"
placeholder="Digite o nome de um evento tech"
id="campo-pesquisa"
/>
<button onclick="pesquisar()">Pesquisar</button>
</section>
<section class="resultados-pesquisa" id="resultados-pesquisa"></section>
</main>
<footer>
<p>2024 - Eventos Tech Todos os direitos reservados</p>
<p>Entre em contato pelo Email: [email protected]</p>
</footer>
<script src="dados.js"></script>
<script src="app.js"></script>
</body>
</html>