-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (67 loc) · 2.39 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Formulário</title>
<link rel="stylesheet" href="farm.css">
</head>
<body>
<main>
<h2 class="h2"> Formulário </h2>
<form>
<label for="nomesobrenome"> Nome e Sobrenome</label>
<input type="text" id="nomesobrenome" class="input-padrao" required placeholder="Seu nome completo">
<label for="email"> Email</label>
<input type="email" id="email" class="input-padrao"required placeholder="seuemail@dominio.com">
<label for="telefone"> Telefone</label>
<input type="tel" id="telefone" class="input-padrao"required placeholder="(XX) XXXXX-XXXX">
<label for="rg"> RG</label>
<input type="rg" id="telefone" class="input-padrao"required placeholder="Seu RG">
<label for="cidade">Cidade</label>
<input type="cidade" id="cidade" class="input-padrao"required placeholder="Sua cidade">
<fieldset>
<legend>Como você prefere receber nossas mensagens?</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"><input type="radio" name="contato" value="whatsapp" id="radio-whatsapp" checked>WhatsApp</label>
</fieldset>
<table>
<thead>
<tr>
<th>Esporte</th>
<th>Posição</th>
<th>Estilo de jogo</th>
</tr>
</thead>
<tbody>
<tr>
<td>Futebol</td>
<td>Atacante</td>
<td>Pivo</td>
</tr>
<tr>
<td>Futebol</td>
<td>Ponta</td>
<td>Ala</td>
</tr>
<tr>
<td>Futebol</td>
<td>Meio Campo</td>
<td>Armador</td>
</tr>
<tr>
<td>Futebol</td>
<td>Zagueiro</td>
<td>Defensor</td>
</tr>
<tr>
<td>Futebol</td>
<td>Goleiro</td>
<td>Salvador</td>
</tr>
</tbody>
</table>
<input type="submit" value="Enviar formulário" class="enviar">
</form>
</body>
</html>