-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
37 lines (37 loc) · 1.45 KB
/
contacto.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contacto</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav> <!---menu superior--->
<ul>
<li><a href="#">Behance</a></li>
<li><a href="#">LinkedIn</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</header>
<section class="contact-form"><h2>Contacto</h2> <!---formulario--->
<form action="enviar.php" method="post">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" required>
<label for="email">Correo electrónico:</label>
<input type="email" id="email" name="email" required>
<label for="celular">Celular:</label>
<input type="tel" id="celular" name="celular" required>
<label for="mensaje">Mensaje:</label>
<textarea id="mensaje" name="mensaje" required></textarea>
<button type="submit">Enviar</button>
</form>
<section>
<a href="index.html" class="back-btn">Volver a inicio</a> <!---boton inicio--->
<button onclick="window.print()">Imprimir</button> <!--- boton imprimir --->
</section>
</section>
</body>
</html>