-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (27 loc) · 950 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Formuário</title>
<link rel="stylesheet" href="formulario.css">
<form>
<h1>CADASTRAR-ENDEREÇO</h1>
<label for="radio-rua">RUA</label>
<input type="text"id="rua">
<label for="radio-bairro">BAIRRO</label>
<input type="text"id="bairro">
<label for="radio-cidade">CIDADE</label>
<input type="text"id="cidade">
<label for="radio-estado">ESTADO</label>
<input type="text"id="estado">
<h1>Qual período deseja estudar?</h1>
<label for="radio-manha">Manhã</label>
<input type="radio" name="contato" value="manha" id="radio-manha">
<label for="radio-tarde">Tarde</label>
<input type="radio" name="contato" value="tarde" id="radio-tarde">
<label for="radio-noite">Noite</label>
<input type="radio" name="contato" value="noite" id="radio-noite">
<img scr="material-escolar">
<div class="pagina1">
</form>
</head>