-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
188 lines (182 loc) · 4.92 KB
/
contact.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="X-UA-Compatible"
content="IE=edge"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<link
rel="stylesheet"
href="style\contact.css"
/>
<title>Barbearia Alura - Contato</title>
<script
src="https://kit.fontawesome.com/2f5ce14514.js"
crossorigin="anonymous"
></script>
</head>
<body>
<nav
class="flex flex-row flex-wrap align-center justify-center bg-gold w-full text-relaxed uppercase w-full"
>
<img
src="media\logo-branco.png"
alt="Logo da Barbearia Alura"
class="logo"
/>
<ul
class="align-center justify-center no-dots flex flex-row flex-wrap h-full my-auto"
>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Produtos</a></li>
<li><a href="contact.html">Contato</a></li>
</ul>
</nav>
<main class="flex flex-col items-center justify-center">
<div class="flex flex-row">
<form class="flex flex-col my-1 mb-9 my-10">
<label
for="workingHours"
class="text-center"
><h3>Horário de Funcionamento</h3></label
>
<table id="workingHours">
<thead>
<tr>
<th>Dia</th>
<th>Horário</th>
</tr>
</thead>
<tbody>
<tr>
<td>Segunda</td>
<td>8h ~ 20h</td>
</tr>
<tr>
<td>Quarta</td>
<td>8h ~ 20h</td>
</tr>
<tr>
<td>Sexta</td>
<td>8h ~ 20h</td>
</tr>
</tbody>
</table>
<label
class="my-1"
for="nomesobrenome"
>Nome e sobrenome</label
>
<input
type="text"
id="nomesobrenome"
class="my-1"
required
/>
<label for="email">Email</label>
<input
type="email"
id="email"
class="my-1"
required
/>
<label for="telefone">Telefone</label>
<input
type="tel"
id="telefone"
class="my-1"
/>
<label for="mensagem">Mensagem</label>
<textarea
id="mensagem"
placeholder="Digite sua mensagem"
required
></textarea>
<fieldset class="my-1">
<legend>Como prefere o nosso contato?</legend>
<label for="radio-email">
<input
type="radio"
name="contato"
value="email"
id="radio-email"
/>
Email
</label>
<label for="radio-telefone">
<input
type="radio"
name="contato"
value="telefone"
id="radio-telefone"
/>
Telefone
</label>
<label
for="radio-whatsapp"
checked
>
<input
type="radio"
name="contato"
value="whatsapp"
id="radio-whatsapp"
/>
WhatsApp
</label>
</fieldset>
<fieldset class="my-1 flex flex-row items-center">
<legend class="ml-0">
Qual horário prefere ser atendido?
<select
class="ml-0"
required
>
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</legend>
</fieldset>
<label
class="ml-0"
checked
>
<input
type="checkbox"
class="ml-0"
/>
Gostaria de receber nossas novidades por email?
</label>
<input
type="submit"
value="Enviar formulário"
class="my-1"
/>
</form>
</div>
<footer
class="flex flex-row align-center justify-center bg-gold w-screen"
>
<span class="my-auto">Made with 💖 by Thomas Verderesi.</span>
<!-- prettier-ignore -->
<a href="http://github.com/tverderesi" class="icon my-auto"><i class="fa-brands fa-github-alt"></i></a>
<a
href="http://twitter.com/tverderesi_dev"
class="icon my-auto"
><i class="fa-brands fa-twitter"></i
></a>
<a
href="https://www.linkedin.com/in/thomas-verderesi-99645073/"
class="icon my-auto"
><i class="fa-brands fa-linkedin"></i
></a>
</footer>
</main>
</body>
</html>