-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula-1.html
36 lines (36 loc) · 1000 Bytes
/
aula-1.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
<body>
<img width="200" src="logo.jpg" />
<h1> Registro HTC </h1>
<h2> Registre-se no melhor curso do Brasil </h2>
<form>
<label for="name-field">Nome</label>
<input id="name-field" />
<br />
<br />
<label> Data de nascimento</label>
<input type="date" />
<br />
<br />
<label>Idade</label>
<input type="number" />
<br />
<br />
<label for="email-field">E-mail</label>
<input id="email-field" />
<br />
<br />
<label for="password-field">Senha</label>
<input id="password-field" type="password" />
<br />
<br />
<label for="confirm-password-field">Confirmar senha</label>
<input id="confirm-password-field" type="password" />
<br />
<br />
<input id="eula-field" type="checkbox">
<label for="eula-field">Aceito os <a target="_blank" href="eula.html">termos de uso</a> </label>
<br>
<br>
<button>Registrar</button>
</form>
</body>