-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (69 loc) · 2.11 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
<!DOCTYPE html>
<html>
<head>
<title>Formulário de Contato</title>
</head>
<body>
<h1>Formulário de Contato</h1>
<<div class="center">
</div>
<form>
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome"><br><br>
<link rel="stylesheet" type="text/css" href="goetia.css">
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<label for="rg">RG:</label>
<input type="text" id="rg" name="rg"><br><br>
<label for="telefone">Telefone:</label>
<input type="tel" id="telefone" name="telefone"><br><br>
<label for="cidade">Cidade:</label>
<input type="text" id="cidade" name="cidade"><br><br>
<p>Qual é a sua idade?</p>
<input type="radio" id="menor" name="idade" value="menor">
<label for="menor">Menor de 18 anos</label><br>
<input type="radio" id="entre" name="idade" value="entre">
<label for="entre">Entre 18 e 65 anos</label><br>
<input type="radio" id="maior" name="idade" value="maior">
<label for="maior">Maior de 65 anos</label><br><br>
<table>
<thead>
<tr>
<th>18</th>
<th>18 e 65</th>
<th>65</th>
</tr>
</thead>
<tbody>
<tr>
<td>jovem</td>
<td>trabalho normal</td>
<td>aposentadoria padrao</td>
</tr>
<tr>
<td>jovem medio</td>
<td>contribuiçao 50 anos</td>
<td>aposentadoria padrao</td>
</tr>
<tr>
<td>jovem adulto </td>
<td>contribuiçao 60 anos </td>
<td>aposentadoria padrao/td>
</tr>
<tr>
<td>adulto jovem</td>
<td>70 anos de contribuiçao</td>
<td>aposentadoria padrao</td>
</tr>
<tr>
<td>adulto</td>
<td>80 ano de contribuiçao</td>
<td>aposentadoria padrao </td>
</tr>
</tbody>
</table>
<br><br>
<input type="submit" value="Enviar">
</form>
</body>
</html>