-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestinos.html
40 lines (34 loc) · 1.2 KB
/
destinos.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
40
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Destinos - RD Transportes</title>
<link rel="stylesheet" href="src/style.css">
<script defer src="src/destinos.js"></script>
<link rel="icon" href="src/logo.png" type="image/x-icon">
</head>
<body>
<section>
<h1>RD Transportes</h1>
<form id="frmBusca" action="" method="get">
<input type="text" class="txt" name="busca" id="busca" placeholder="Busque por um destino...">
<button type="submit">🔎</button>
</form>
<table border="1">
<caption>Destinos disponíveis</caption>
<thead>
<tr>
<th>Cidade</th>
<th>Ida e Volta disponível?</th>
</tr>
</thead>
<tbody id="tableBody">
<!-- Conteúdo da tabela -->
</tbody>
</table>
<a style="color: white;" href="index.html">Voltar</a>
</section>
<p class="description">Esta é uma página fake!!! Favor não tome como real 😉</p>
</body>
</html>