-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontato.html
More file actions
81 lines (81 loc) · 3.5 KB
/
contato.html
File metadata and controls
81 lines (81 loc) · 3.5 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Gruta Skate Park</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="cabecalho">
<h1><a href="index.html"><img src="img/logo.png"></a></h1>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="midia.html">midia</a></li>
<li><a href="eventos.html">eventos</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="name" id="nomesobrenome" class="formulario-padrao" required>
<label for="email">Email</label>
<input type="email" id="email" class="formulario-padrao" required placeholder="seu_email@dominio.com">
<label for="telefone">Telefone</label>
<input type="tel" id="telefone" class="formulario-padrao" required placeholder="(xx)xxxxx-xxxx">
<label for="caixamensagem">Mensagem</label>
<textarea rows="10" id="caixamensagem" class="formulario-padrao"></textarea>
<fieldset>
<legend>Como prefere o nosso contato?</legend>
<label><input type="radio" name="contato" checked>Email</label>
<label><input type="radio" name="contato">Telefone</label>
<label><input type="radio" name="contato">Whatsapp</label>
</fieldset>
<fieldset>
<legend>Você é?</legend>
<select>
<option></option>
<option>Atleta</option>
<option>Mãe/Pai</option>
<option>Empresa</option>
<option>Imprensa</option>
<option>Outro</option>
</select>
</fieldset>
<label class="checkbox"><input type="checkbox" checked>Gostaria de receber nossas novidades por email?</label>
<input type="submit" class="enviar">
</form>
</main>
<footer>
<div class="caixa-rodape">
<div class="logo-rodape">
<img src="img/logo-rodape.png">
<p class="copyright">©Copyright - Gruta Skate Park - 2020</p>
</div>
<div class="lista-de-midias">
<ul>
<li>Twitter
<img src="img/logo-twitter.png">
</li>
<li>YouTube
<img src="img/logo-youtube.png">
</li>
<li>Instagram
<img src="img/logo-instagram.png">
</li>
<li>Facebook
<img src="img/logo-facebook.png">
</li>
</ul>
</div>
</div>
</footer>
</body>
</html>