<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contacto - Barbería Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="caja">
<h1><img src="img/logo.png" alt="Logo de la Barbería Alura"></h1>
<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>
<form>
<label for="nombreAp">Nombre y Apellido</label>
<input type="text" id="nombreAp" class="input-padron" required>
<label for="correoElec">Correo electrónico</label>
<input type="email" id="correoElec" class="input-padron" required placeholder="email@dominio.com">
<label for="telefono">Teléfono</label>
<input type="tel" id="telefono" class="input-padron" required
placeholder="(xx)XXX XXXX">
<label for="msg">Mensaje</label>
<textarea cols="70" rows="10" id="msg" class="input-padron" required></textarea>
<fieldset>
<legend>¿Cómo le gustaría que lo contactemos?</legend>
<label for="radio-email"><input type="radio" name="contacto" value="email" id="radio-email">Email</label>
<label for="radio-tel"><input type="radio" name="contacto" value="telefono" id="radio-tel">Teléfono</label>
<label for="radio-whatsapp"><input type="radio" name="contacto" value="whatsapp" id="radio-whatsapp" checked>WhatsApp</label>
</fieldset>
<fieldset>
<legend>¿En cuál horario prefiere ser atendido?</legend>
<select>
<option> Mañana</option>
<option> Tarde</option>
<option> Noche</option>
</select>
</fieldset>
<label class="check"> <input type="checkbox" checked> ¿Le gustaría recibir novedades de la Barbería Alura?</label>
<input type="submit" value="Enviar Formulario" class="enviar">
</form>
<table>
<thead>
<tr>
<th>Día</th>
<th>Horario</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lunes</td>
<td>08 - 20 HRS</td>
</tr>
<tr>
<td>Miércoles</td>
<td>08 - 20 HRS</td>
</tr>
<tr>
<td>Viernes</td>
<td>08 - 20 HRS</td>
</tr>
</tbody>
</table>
</main>
<footer>
<img src="img/logo-blanco.png" alt="Logo de la Barbería Alura">
<p> © Copyright Barbería Alura - 2020 </p>
</footer>
</body>
</html>