-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.19 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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<style>
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Julius+Sans+One&display=swap');
</style>
<title>Manual da Primeira Viagem</title>
</head>
<body>
<nav>
</nav>
<header>
<h1>Manual da Primeira Viagem</h1>
<h3>Tudo o que você precisa saber sobre sua próxima jornada!</h3>
</header>
<main>
<section class="barraDeBusca">
<input type="text" placeholder="O que você gostaria de saber?" id="campo-pesquisa">
<button onclick="pesquisar()">Procurar</button>
</section>
<hr>
<section class="resultados-pesquisa" id="resultados-pesquisa">
</section>
</main>
<footer>
2024 - © Todos os direitos reservados. <img src="img/github.png"> <a href="https://github.com/luisatriers"> GitHub</a>
</footer>
<script src="dados.js"></script>
<script src="app.js"></script>
</body>
</html>