-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (42 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Tela03</title>
</head>
<body>
<main>
<canvas id ="barra_top"></canvas>
<canvas id ="quadrado"></canvas>
<p id = "inscrevase">Inscreva-se</p>
<form id="form_inscrever">
<label id="label">Nome</label><br>
<input type="text" id = "input"><br>
<label id="label">Email</label><br>
<input type="text"id = "input"><br>
<label id="label">Senha</label><br>
<input type="password"id = "input"><br>
<img src="img/esconder.svg" alt="icone de um olho" id = "olho">
<label id="label">CEP</label>
<label id="label_numero">Número</label><br>
<input type="text" id="input_cep">
<input type="text" id="input_numero">
<label id ="label">Rua</label><br>
<input type="text" id="input"><br>
<label id ="label">Cidade</label><br>
<select id="select_cidade">
<option value="">Selecione uma cidade</option>
<option value="saopaulo">São Paulo</option>
<option value="riodejaneiro">Rio de Janeiro</option>
<option value="santos">Santos</option>
<option value="pindamonhangaba">pindamonhangaba</option>
</select>
<input type="checkbox"id = "input_checkbox">
<p id ="p_checkbox">Concordo com os termos e condições</p>
<input type="submit" id = "botao_cadastrar" value="Cadastrar Conta">
</form>
</main>
</body>
</html>