2023-04-11 14:58:40 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="es">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>Contacto - Barbería Alura</title>
|
|
|
|
<link rel="stylesheet" href="./reset.css"/>
|
|
|
|
<link rel="stylesheet" href="./style.css"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<div class="caja">
|
2023-04-12 00:03:17 -04:00
|
|
|
<h1><img src="./imagenes/logo.png" alt="logo Barbería Alura"></h1>
|
2023-04-11 14:58:40 -04:00
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><a href="./index.html">Home</a></li>
|
|
|
|
<li><a href="./productos.html">Productos</a></li>
|
|
|
|
<li><a href="./contacto.html">Contacto</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<main>
|
2023-04-11 18:00:26 -04:00
|
|
|
<form>
|
|
|
|
<label for="nombre_apellido">Nombre y Apellido</label>
|
2023-04-12 00:03:17 -04:00
|
|
|
<input type="text" id="nombre_apellido" class="input-padron"
|
|
|
|
required/>
|
2023-04-11 18:00:26 -04:00
|
|
|
|
|
|
|
<label for⁼"email">Correo Eletrónico</label>
|
2023-04-12 00:03:17 -04:00
|
|
|
<input type="email" id="email" class="input-padron" required
|
|
|
|
placeholder="mail@dominio.com"/>
|
2023-04-11 18:00:26 -04:00
|
|
|
|
|
|
|
<label for⁼"telefono">Teléfono</label>
|
2023-04-12 00:03:17 -04:00
|
|
|
<input type="tel" id="telefono" class="input-padron" required
|
|
|
|
placeholder="(99) 9999 9999"/>
|
2023-04-11 18:00:26 -04:00
|
|
|
|
2023-04-11 19:38:42 -04:00
|
|
|
<label for="mensaje">Mensaje</label>
|
2023-04-12 00:03:17 -04:00
|
|
|
<textarea id="mensaje" cols="70" rows="10"class="input-padron"
|
|
|
|
required></textarea>
|
|
|
|
<fieldset>
|
|
|
|
<legend>¿Como prefieres que te contactemos?</legend>
|
2023-04-11 19:38:42 -04:00
|
|
|
|
|
|
|
<label for="radio-email"><input type="radio" name="contacto"
|
|
|
|
value="email" id="radio-email"> Email</label>
|
|
|
|
|
|
|
|
<label for="radio-telefono"><input type="radio" name="contacto"
|
|
|
|
value="telefono" id="radio-telefono"> Teléfono</label>
|
|
|
|
|
|
|
|
<label for="radio-whatsap"><input type="radio" name="contacto"
|
2023-04-12 00:03:17 -04:00
|
|
|
value="whatsap" id="radio-whatsap" checked> Whatsapp</label>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<legend>¿En que horario prefieres ser contactado?</legend>
|
2023-04-11 19:38:42 -04:00
|
|
|
<select>
|
|
|
|
<option>Mañana</option>
|
|
|
|
<option>Tarde</option>
|
|
|
|
<option>Noche</option>
|
|
|
|
</select>
|
2023-04-12 00:03:17 -04:00
|
|
|
</fieldset>
|
|
|
|
<label class="checkbox"><input type="checkbox" checked>
|
|
|
|
¿Te interesa recibir novedades y ofertas?
|
|
|
|
</label>
|
2023-04-11 18:00:26 -04:00
|
|
|
<input type="submit" value="Enviar Formulario"/>
|
|
|
|
</form>
|
2023-04-11 14:58:40 -04:00
|
|
|
</main>
|
|
|
|
<footer>
|
2023-04-12 00:03:17 -04:00
|
|
|
<img src="./imagenes/logo-blanco.png" alt="logo Barbería Alura">
|
2023-04-11 14:58:40 -04:00
|
|
|
<!-- Copyleft unicode 🄯 🄯 -->
|
|
|
|
<!-- Copyright unicode © © -->
|
|
|
|
<p class="copyright">🄯 CopyLeft 2023 - DevFzn</p>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|