-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
44 lines (38 loc) · 1.63 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
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contacto - Barberia Alura</title>
<link rel="stylesheet" href="reset.css"> <!-- resetea configuraciones predeterminadas del navegador -->
<link rel = "stylesheet" href="styles-contactos.css">
</head>
<body>
<header>
<div class = "caja"> <!-- crear la division para atribuirle parametros -->
<h1><img src="imagenes/logo.png"> </h1>
<nav><!-- panel de navegacion -->
<ul>
<li><a href="index.html">Home</a></li><!-- creando contenido de encabezado y referenciado de pagina -->
<li><a href="productos.html"> Productos</a> </li>
<li><a href="contacto.html">Contactos</a></li>
</ul>
</nav>
</div>
</header>
<main>
<form>
<label for="nombreapellido">Nombre y Apellido</label> <!-- el for se refiere al id del input (deja activa la caja de texto) -->
<input type="text" id="nombreapellido">
<label for="correoelectronico">Correo Electrónico</label>
<input type="text" id="correoelectronico">
<label for="telefono">Telefono</label>
<input type="text" id="telefono">
<input type="submit" value="Enviar formulario">
</form>
</main>
<footer>
<img src="imagenes/logo-blanco.png" >
<p>© Copyright Barberia Alura -2022</p>
</footer>
</body>
</html>