-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontatos.html
110 lines (86 loc) · 2.95 KB
/
contatos.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Contatos Arashi</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Splash&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="caixa">
<h1><img id="logo" src="./assets/akaliprin.png" alt="Banner da Lanhouse"></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pacotes.html">Pacotes e preços</a></li>
<li><a href="contatos.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<main>
<form>
<label for="nomesobrenome">Nome e sobrenome</label>
<input type="text" id="nomesobrenome" class="input-padrão" required placeholder="Fulano de Tal">
<label for="email">Email</label>
<input type="email" id="email" class="input-padrão" required placeholder="seuemail@dominio.com">
<label for="telefone">Telefone</label>
<input type="tel" id="telefone" class="input-padrão" required placeholder="(99)99999-9999">
<label for="mensagem">Mensagem</label>
<textarea cols="70" rows="10" id="mensagem" class="input-padrão" 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 o 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>
<div class="tabela">
<table>
<thead>
<tr>
<th>Dia</th>
<th>Horário</th>
</tr>
</thead>
<tbody>
<tr>
<td>Segunda-Feira</td>
<td>08:00 às 20:00</td>
</tr>
<tr>
<td>Quarta-Feira</td>
<td>08:00 às 20:00</td>
</tr>
<tr>
<td>Sexta-Feira</td>
<td>08:00 às 20:00</td>
</tr>
<tr>
<td>Sexta-Feira Dia de pacote Corujão</td>
<td>22:00 até 12:00 de Sábado</td>
</tr>
</tbody>
</div>
</table>
</main>
<footer>
<img id="logo2" src="./assets/akalilogo2.png" alt="Logo da Lanhouse">
<p class="copyright"> © Copyright Alex Marcos - 2022</p>
</footer>
</body>
</html>