-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 1 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
<!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="/assets/css/style.min.css">
<title>Carros e Bicicletas</title>
</head>
<body>
<header>
<h1 aria-label="Titulo do site">Carros e Bicicletas</h1>
</header>
<main>
<section>
<div class="container" aria-label="Apresentação do carro">
<h2>Carro: <span>R$ 1999</span></h2>
<p>Carro modelo <span>2045</span>, com <span>200km</span> rodados.</p>
<a href="#comprar">Comprar Carro</a>
</div>
<div class="container" aria-label="Apresentação da bicicleta">
<h2>Bicicleta: <span>R$ 199</span></h2>
<p>Bicicleta modelo <span>2050</span>, com <span>20km</span> rodados.</p>
<a href="#comprar">Comprar Bicicleta</a>
</div>
</section>
</main>
</body>
</html>