-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (27 loc) · 806 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
34
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manual Automotivo</title>
<link rel="stylesheet" href="../styles/telaInicial.css">
</head>
<body>
<header>
<h1>
O que você deseja buscar?
</h1>
</header>
<section>
<div class="div-buttons">
<button class="choice-button" onclick="buscarCarros()"> Carros </button>
<button class="choice-button" onclick="buscarMotos()"> Motos </button>
</div>
</section>
<footer>
<p>2024 - manual automotivo - Enciclopédia do gearhead</p>
</footer>
<script src="../script/dados.js"></script>
<script src="../script/app.js"></script>
</body>
</html>