<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contacto - Barbería Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="caja">
<h1><img src="imagenes/logo.png" alt="Logo 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="http://www.google.com">Contacto</a></li>
</ul>
</nav>
</div>
</header>
<main>
<form>
<label for="nombreapellido">Nombre y apellido</label>
<input class="input-padron" type="text" id="nombreapellido" required>
<label for="correoelectronico">Correo Electrónico</label>
<input class="input-padron" type="email" id="correoelectronico" required placeholder="email@dominio.com">
<label for="telefono">Teléfono</label>
<input class="input-padron" type="tel" id="telefono" required placeholder="(xx) xxxxxxxx">
<label for="mensaje">Mensaje</label>
<textarea class="input-padron" cols="70" rows="10" id="mensaje" required></textarea>
<fieldset>
<legend>¿Cómo gusta que lo contactemos?</legend>
<label for="radio-email"><input type="radio" name="Contacto" id="radio-email" value="email">Email</label>
<label for="radio-telefono"><input type="radio" name="Contacto" id="radio-telefono" value="telefono">Telefono</label>
<label for="radio-watsapp"><input type="radio" name="Contacto" id="radio-watsapp" value="watsapp" checked>WhatsApp</label>
</fieldset>
<fieldset>
<legend>¿En cual horario prefiere ser atendido'</legend>
<select>
<option>Mañana</option>
<option>Tarde</option>
<option>Noche</option>
</select>
</fieldset>
<label><input type="checkbox" checked>Le gustaría recibir novedades de la barbería Alura</label>
<input class="enviar" type="submit" value="Enviar formularío">
</form>
<table>
<thead>
<tr>
<td>Día</td>
<td>Horarío</td>
</tr>
</thead>
<tbody>
<tr>
<td>Lunes</td>
<td>08h - 20h</td>
</tr>
<tr>
<td>miercoles</td>
<td>08h - 20h</td>
</tr>
<tr>
<td>Viernes</td>
<td>08h - 20h</td>
</tr>
</tbody>
</table>
</main>
<footer>
<img src="imagenes/logo-blanco.png" alt="Logo barberia alura">
<p class="copyright">© Copyright Barbería Alura - 2020</p>
</footer>
</body>
</html>