-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulario de Cadastro</title>
</head>
<body>
<form name="signup" method="post" action="#">
Nome: <input type="text" name = "name" /><br>
Idade: <input type="number" name = "age" /><br>
Senha: <input type="password" name = "password" /><br>
<button type="submit">Enviar</button>
</form>
<form action="">
<label for="">Texto: </label><input type="text" /><br>
<label for="">Números: </label><input type="number" min="0" max="99" step="10"><br>
<label for="">Button: </label><input type="button" value="Enviar" /><br>
<label for="">Range: </label><input type="range" /><br>
<label for="">Color: </label><input type="color" /><br>
<label for="">E-mail: </label><input type="email" /><br>
<label for="">Url: </label><input type="url" /><br>
<label for="">Date: </label><input type="date" /><br>
<label for="">Week: </label><input type="week" /><br>
<label for="">Checkbox: </label><input type="checkbox" /><br>
<label for="">Radio: </label><input type="radio" name="Aceita"/><label for=""><input type="radio" name="Aceita"/></label><br>
<label>Hidden: </label><input type="hidden" /><br>
<label>File: </label><input type="file" /><br>
<label for="">Button: </label><button type="button">Enviar</button><br>
</form>
</body>
</html>