-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (58 loc) · 1.96 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carros Incríveis</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Carros Incríveis</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#modelos">Modelos</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
</header>
<section id="home">
<h2>Descubra o mundo dos carros incríveis.</h2>
<p>Explore nossa coleção de carros de última geração.</p>
</section>
<section id="modelos">
<h2>Modelos em Destaque</h2>
<div class="carro">
<img src="carro1.jpg" alt="Carro 1">
<h3>Modelo A</h3>
<p>Um carro poderoso com design elegante.</p>
</div>
<div class="carro">
<img src="carro2.jpg" alt="Carro 2">
<h3>Modelo B</h3>
<p>Desempenho excepcional em um pacote compacto.</p>
</div>
<div class="carro">
<img src="carro3.jpg" alt="Carro 3">
<h3>Modelo C</h3>
<p>Conforto e luxo redefinidos.</p>
</div>
</section>
<section id="contato">
<h2>Entre em Contato</h2>
<form action="processar_formulario.php" method="post">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="mensagem">Mensagem:</label>
<textarea id="mensagem" name="mensagem" rows="4" required></textarea>
<button type="submit">Enviar Mensagem</button>
</form>
</section>
<footer>
<p>© 2024 Carros Incríveis. Todos os direitos reservados.</p>
</footer>
</body>
</html>