-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.59 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
<!DOCTYPE html>
<html lang="pt-BR">
<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" />
<script src="index.js"></script>
<link rel="stylesheet" href="style.css" />
<title>Aulaaaa</title>
</head>
<body>
<div class="divForm">
<form class="formulario">
<h1>Quem é você?</h1>
<label>Nome:</label>
<input type="text" />
<br />
<label>Idade:</label>
<input type="number" />
<br />
<label>Data de nascimento:</label>
<input type="date" />
<h1>De onde você é?</h1>
<label>Cidade Natal:</label>
<input type="text" />
<br />
<label>Cidade Atual:</label>
<input type="text" />
<h1>Qual time você torce?</h1>
<input name="time" type="radio" />Internacional.
<br />
<input name="time" type="radio" />Inter.
<br />
<input name="time" type="radio" />Colorado.
<br />
<input name="time" type="radio">Maior do sul (inter).
<h1>Com qual frequência você costuma praticar exercícios fisícos?</h1>
<input name="exercícios" type="radio" />Todos os dias, pae é sheipado.
<br />
<input name="exercícios" type="radio" />As vezes.
<br />
<input name="exercícios" type="radio" />Nunca KKKKKKK.
</form>
</div>
</body>
</html>