-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
35 lines (31 loc) · 931 Bytes
/
contato.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contato - Empresa XYZ</title>
</head>
<body>
<header>
<h1>Contato - Empresa XYZ</h1>
</header>
<nav>
<a href="home.html">Home</a>
<a href="sobre.html">Sobre</a>
<a href="contato.html">Contato</a>
</nav>
<main>
<h2>Entre em Contato</h2>
<form action="enviar.php" method="POST">
<label for="nome">Nome:</label><br>
<input type="text" id="nome" name="nome"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br><br>
<button type="submit">Enviar</button>
</form>
</main>
<footer>
<p>Empresa XYZ. Todos os direitos reservados.</p>
</footer>
</body>
</html>