<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Contatos - Barbearia Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="caixa">
<h1> <img src="logo.png" alt="Logo da Barbearia alura"></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="produtos.html">Produto</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<main>
<form>
<label for="nomesobrenome">Nome e sobrenome</label>
<input type="text" id="nomesobrenome" class="input-padrao" required>
<label for="email">E-mail</label>
<input type="email" id="email" class="input-padrao" required placeholder="SeuE-mail@dominio.com">
<label for="telefeno">Telefone</label>
<input type="tel" id="telefone" class="input-padrao" required placeholder="(DDD)9 xxxx-xxxx">
<label for="mensagem">Mensagem</label>
<textarea cols="72" rows="12"id="mensagem" class="input-padrao" required > </textarea>
<fieldset>
<legend>Como prefere o nosso contato?</legend>
<label for="radio-email"><input type="radio" name="contato" value="email" id="radio-email">E-mail</label>
<label for="radio-telefone"><input type="radio" name="contato" value="telefone" id="radio-telefone">Telefone</label>
<label for="radio-whatsapp"><input type="radio" name="contato" value="whatsapp" id="radio-whatsapp" checked>Whatsapp</label>
</fieldset>
<fieldset>
<legend>Qual horário prefere ser atendido?</legend>
<select>
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</fieldset>
<label class="checkbox"><input type="checkbox" checked> Gostaria de receber nossas novidades por e-mail?</label>
<input type="submit" value="Enviar formulário" class="enviar">
</form>
<table>
<thead>
<tr>
<th>Dia</th>
<th>Horário</th>
</tr>
<tr>
<td colspan="2">Rio de Janeiro</td>
</tr>
</thead>
<tbody>
<tr>
<td>Segunda</td>
<td>8hs -- 20hs</td>
</tr>
<tr>
<td>Quarta</td>
<td>8hs -- 20hs</td>
</tr>
<tr>
<td>Sexta</td>
<td>8hs -- 20hs</td>
</tr>
</tbody>
</table>
</main>
<footer>
<img src="logo-branco.png" alt="Logo da Barbearia alura">
<p class="copyringht">© Copyringht Barbearia Alura - 2022 ⬳</p>
</footer>
</body>
</html>
form label, form legend{
display: block;
font-size: 22px;
margin: 0 0 10px;
}
.input-padrao{
display: block;
margin: 0 0 20px;
padding: 10px 25px;
width: 60%;
}
.checkbox{
margin: 23px 0;
}
.enviar{
width: 40%;
padding:23px 0;
background: powderblue ;
color: white;
font-size: 20px;
font-weight: bold,inherit;
border: none;
border-radius: 15px;
transition: 1s all;
cursor: pointer;
}
.enviar:hover{
background: grey;
transform: scale(1.1) rotate(0.6deg);
}
.enviar:active{
background: papayawhip;
color: black;
}
table{
margin: 20px 40px;
}
thead{
background: #111111;
color: white;
font-weight: bold;
}
td, th{
border: 1px solid #000000;
padding: 15px 6px;
}