-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (43 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Formulário</title>
<link rel="stylesheet" href="formulario.css">
<div class="pagina">
<h1>Cadastrar endereço</h1>
</div>
<form>
<div class="pagina2">
<label for="nome">Estado</label>
<input type="text"id="nome">
<label for="email">Cidade</label>
<input type="text" id="email">
<label for="telefone">Rua</label>
<input type="text" id="telefone">
<label for="mensagem">Bairro</label>
<input type="text" id="mensagem">
</div>
<div class="pagina3">
<p>qual turno prefere estudar?</p>
<label for="radio-email">Manhã</label>
<input type="radio" name="contato" value="email" id="radio-email">
<label for="radio-telefone">Tarde</label>
<input type="radio" name="contato" value="telefone" id="radio-telefone">
<label for="radio-Whatsapp">Noite</label>
<input type="radio" name="contato" value="Whatsapp" id="radio-Whatsapp">
</div>
<img src="materia.jpg">
<div class="pagina1">
<p>Escolha a disciplina ?</p>
<select>
<option>lingua portuguesa</option>
<option>matemática</option>
<option>geografia</option>
<option>história</option>
</select>
</div>
<input type="submit" value="enviar formulario">
</form>
</head>
<body>