-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Aula</title>
<link rel="stylesheet" href="principal.css">
</head>
<body>
<main>
<form>
<h1>Caderno De Matérias</h1>
<img class="imagem" src="f1.jpg">
<div class="materias">
<h2>Qual matéria deseja?</h2>
<select class="horario">
<option>Matemática</option>
<option>História</option>
<option>Geografia</option>
<option>Ciências</option>
<option>Lingua Portuquêsa</option>
</select>
</div>
<div class="endereco" >
<h2>Preencha os dados.</h2>
<label for="rua"> Rua<input type="text" id="rua" class="input-padrao"></label>
<label for="bairo"> Bairo <input type="text" id="bairo" class="input-padrao"></label>
<label for="cidade"> Cidade <input type="text" id="cidade" class="input-padrao"></label>
<label for="estado"> Estado <input type="text" id="estado" class="input-padrao"></label>
</div>
<div class="contato">
<h2>Que periodo deseja estudar?</h2>
<label for="radio-manha"><input type="radio" name="horario" value="manha" id="radio-manha"> Manhã </label>
<label for="radio-tarde"><input type="radio" name="horario" value="tarde" id="radio-tarde"> Tarde </label>
<label for="radio-noite"><input type="radio" name="horario" value="noite" id="radio-noite"> Noite </label>
</div>
</form>
<input class="enviar" type="submit" value="Enviar">
</main>
</body>
</html>