-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
42 lines (38 loc) · 1.24 KB
/
contact.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Contacto</title>
<link rel="stylesheet" href="css/styles.css">
<script src="js/scripts.js"></script>
</head>
<body>
<header>
<h1>Contacto</h1>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="about.html">Sobre Nosotros</a></li>
<a href="services.html">Servicios</a></li>
<a href="contact.html">Contacto</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Envíanos un Mensaje</h2>
<form action="send_message.php" method="post">
<label for="name">Nombre</label>
<input type="text" id="name" name="name">
<label for="email">Correo Electrónico</label>
<input type="text" id="email" name="email">
<label for="message">Mensaje</label>
<textarea id="text" name="message"></textarea>
<button type="submit">Enviar</button>
</section>
</main>
<footer>
<p>© 2024 Nombre de la Empresa</p>
</footer>
</body>
</html>