-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
49 lines (49 loc) · 1.5 KB
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
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FP Selection</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>FP SELECTION </h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="carros.html">Carros</a></li>
<li><a href="fale-conosco.html">Fale Conosco</a></li>
</ul>
</nav>
</header>
<section>
<div class="content">
<div class="car-info">
<span class="year">2023</span>
<h2>911 Turbo</h2>
<p>Porche 911 Turbo com um design futurista.</p>
<button class="info-btn">Saiba Mais</button>
</div>
<div class="car-img">
<img src="./img/carro-1.png" alt="Carro">
</div>
</div>
<div class="arrows">
<button class="arrow left"><img src="./img/seta.png" alt="seta esquerda"></button>
<div class="line"></div>
<div class="line"></div>
<button class="arrow right"><img src="./img/seta.png" alt="seta direita"></button>
</div>
<div class="indicators">
<span class="number">01</span>
<ul>
<li class="active"></li>
<li></li>
<li></li>
</ul>
</div>
</section>
<script src="script.js"></script>
</body>
</html>