-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
69 lines (54 loc) · 2.31 KB
/
contato.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
<head>
<meta charset="utf-8">
<title>Contato - Supermercado Antonio</title>
<link rel="shortCut icon" href="favi.png">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="position">
<h1><a href="Super-Mercado-Antonio.html"><img src="logo.png" alt="LOGO DO SuperMercado Antonio"></a></h1>
<nav>
<ul>
<li><a href="Super-Mercado-Antonio.html">Home</a></li>
<li><a href="produtos.html">Produtos</a></li>
<li><a href="contato.html">Contato</a></li>
<li><a href="catálogo.html">Catálogo</a></li>
</ul>
</nav>
</div>
</header>
<main class="cormain">
<form>
<label for="nome">Nome Completo</label>
<input type="text" id="nome" class="input-padrão" required placeholder="*Obrigatório">
<label for="number">Telefone</label>
<input type="tel" id="number" class="input-padrão" required placeholder="(XX)-XXXXX-XXXX">
<label for="email">Endereço de Email</label>
<input type="email" id="email" class="input-padrão" required placeholder="emailteste@gmail.com">
<label for="Mensagem">Mensagem</label>
<textarea cols="70" rows="10" id="Mensagem" class="input-padrão" required placeholder="*OBRIGATÓRIO"></textarea>
<fieldset>
<legend>Como você prefere o nosso contato?</legend>
<label for="radio-email"><input type="radio" name="contato" value="e-mail" id="radio-email">E-mail</label>
<label for="radio-Telefone"><input type="radio" name="contato" id="radio-Telefone">Telefone</label>
<label for="radio-whatsapp"><input type="radio" name="contato" id="radio-whatsapp" checked>Whatsapp</label>
</fieldset>
<fieldset>
<legend>Qual o horario que gostria de ser atendido</legend>
<select>
<option>Manhã</option>
<option>Tarde</option>
<option>Noite</option>
</select>
</fieldset>
<label for="checkbox" 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>
</main>
<footer>
<img src="logo.png" class="imgcabeçalho">
<p class="cabeçalhocopy">© Copyright SuperMercado Antonio 2019</p>
</footer>
</body>