-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (70 loc) · 2.57 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
<head>
<title>Aula - 2 - Formulário </title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link href="./styles.css" rel="stylesheet"
/>
</head>
<body>
<img width="300px" src="logo.jpg" />
<h1 class="title">Cadastre-se no melhor curso do Brasil</h1>
<div class="box">
<label class="label-field" for="name-field">Nome completo</label>
<input placeholder="Digite seu nome completo" type="text" id="name-field" />
</div>
<wbr>
<div class="box">
<label class="label-field">Data de nascimento</label>
<input type="date" />
</div>
<wbr>
<div class="box">
<label class="label-field">Região </label>
<select>
<option></option>
<option>Sudeste</option>
<option>Nordeste</option>
<option>Centro oeste</option>
<option>Sul</option>
<option>Norte</option>
</select>
</div>
<wbr>
<div class="box">
<label class="label-field">Gênero</label>
<input type="radio" name="input-gender" id="" />
Feminino
<input type="radio" name="input-gender" id="" />
Masculino
<input type="radio" name="input-gender" id="" />
Não declarar
</div>
<wbr>
<div class="box">
<label class="label-field" for="email-field">E-mail</label>
<input placeholder="Digite seu e-mail completo" type="text" id="email-field" />
</div>
<wbr>
<div class="box">
<label class="label-field" for="password"> Senha</label>
<input placeholder="Digite sua senha completa" type="password" id="password-field" />
</div>
<wbr>
<div class="box">
<label class="label-field" for="confirm-password-field">Confirmar a senha</label>
<input placeholder="Digite sua senha completa" type="password" id="confirm-password-field">
</div>
<wbr>
<div class="box">
<input type="checkbox" /> <p>Aceito os <a target="_blank" href="eula.html">termos e condições</a> e concordo com as
<a target="_blank" href="pp.html"> políticas de privacidade</a> do Hall To Code</p>
</div>
<wbr>
<wbr>
<div class="box">
<button>Cadastrar</button>
</div>
<wbr>
<p>Já tem uma conta no Hall To Code? <a target="_blank" href="https://www.google.com.br/"> Entrar agora </a></p>
</body>