-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (50 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Formulario </title>
<link rel="stylesheet" href="aula.css">
<main>
<header>
<div class="pagina1">
<p class="ale" style="color:#8b0000">ESCOLHA A MATERIA.</p>
<form>
<img src="estudo.jpg">
<select name="select">
<option value="Matematica">Matematica</option>
<option value="Historia" >Historia</option>
<option value="Geografia">Geografia</option>
<option value="Ciencias" >Ciencias</option>
<option value="lingua portuguesa">Lingua Portuguesa</option>
</select>
</div>
<div class="pagina2">
<p class="ale2" style="color:#8b0000">CADASTRE - ENDEREÇO.</p>
<label for="nomesobrenome">Nome e Sobrenome<input type="text"id="nomesobrenome" class="input-padrao"></label>
<label for="email">Email<input type="text" id="email" class="input-padrao"></label>
<label for="telefone">Bairo<input type="text" id="telefone" class="input-padrao"></label>
<label for="telefone">Estado<input type="text" id="telefone" class="input-padrao"></label>
</div>
<div class="turno">
<fieldset>
<legend>Selecione o turno:</legend>
<div>
<input type="radio" id="huey" name="drone" value="huey"
checked>
<label for="Manha">Manha</label>
</div>
<div>
<input type="radio" id="dewey" name="drone" value="dewey">
<label for="Tarde">Tarde</label>
</div>
<div>
<input type="radio" id="louie" name="drone" value="louie">
<label for="Noite">Noite</label>
</div>
</fieldset>
</div>
</form>
</main>
</body>
</html>