-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
40 lines (40 loc) · 1.43 KB
/
forms.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<nav><a href="./index.html">home</a></nav>
<h1>Formularios</h1>
<form action="">
<input type="text" placeholder="Seu Nome">
<br/>
<label for="email">Seu email</label>
<input id="email" type="email">
<br/>
<input type="tel" placeholder="Seu telefone">
<br>
<input type="number" max="10" min="2" step="2"> <br>
<input type="file"><br>
<input type="color"><br>
<input type="checkbox"><label for="checkbox">Aceito</label><br>
<p>Qual sua cor favorita</p>
<input id="cor-verazul" type="radio"> <label for="cor-verazul">Azul</label>
<input id="cor-verde" type="radio"> <label for="cor-verde">Verde</label>
<input id="cor-vermelha" type="radio"> <label for="cor-vermelha">Verelho</label>
<br>
<label for="">Qual seu filme favorito?</label>
<select multiple name="" id="">
<option value="">Filme A</option>
<option value="">Filme B</option>
<option value="">Filme C</option>
</select>
<br>
<textarea name="" id="" cols="30" rows="10"></textarea><br>
<button type="submit">Enviar</button>
<button type="reset">Clear</button>
</form>
</body>
</html>