-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (46 loc) · 1.62 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
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="ptbr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Formulario</title>
</head>
<body>
<main>
<u><h1>Cadastrar Endereço</h1></u>
<form>
<div class="text">
<center><label for="rua"> Rua </label>
<input type="text" id="rua"></center>
<center><label for="bairro"> Bairro </label>
<input type="text" id="bairro"></center>
<center><label for="cidade"> cidade </label>
<input type="text" id="cidade"></center>
<center><label for="estado"> Estado </label>
<input type="text" id="estado"></center>
</div>
<div class="ponto">
<u><h2>Qual período deseja estudar?</h2></u>
<center> <label for="radio-manha">Manhã</label>
<input type="radio" name="contato" value="manha" id="radio-manha"></center>
<center><label for="radio-tarde">Tarde</label>
<input type="radio" name="contato" value="tarde" id="radio-tarde"></center>
<center><label for="radio-noite">Noite</label>
<input type="radio" name="contato" value="noite" id="radio-noite"></center>
</div>
<img src="materia.jpg" id=
'imagem'>
<div class="virgula">
<u><h3> Escolha a disciplina</h3></u>
<center> <select id="select">
<option>Lingua Portuguesa</option>
<option>Matemática</option>
<option>Geografia</option>]
<option>História</option>
</select></center>
</div>
</form>
</body>
</html>
</main>