-
Notifications
You must be signed in to change notification settings - Fork 0
/
formularioBasico.html
29 lines (29 loc) · 1 KB
/
formularioBasico.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
<!Doctype html>
<html>
<head>
<title>Formulário</title>
</head>
<body>
<fieldset style="width:670px">
<legend> <strong>Formulário</strong></legend>
<fieldset style="width:670px">
<form>
Nome:<input type="text" name="nome"/ size = "25px">
<br></br>
Comentário: <textarea name="comment"> Digite um comentário aqui.</textarea>
<br></br>
SEXO:<input type="radio" name="sexo" value="masculino">Masculino
<input type="radio" name="sexo" value="feminino">Feminino
<br></br>
Selecione os tipos de frutas que você gosta:
<input type="checkbox" name="banana">Banana
<input type="checkbox" name="laranja">Laranja
<input type="checkbox" name="manga">Manga
<input type="checkbox" name="abacaxi">Abacaxi
<input type="checkbox" name="melancia">Melancia
<br></br>
<input type="reset" name="reset" value"Limpa dados"/> <input type="submit" name="submit" value="Enviar"/>
</form>
</fieldset>
</body>
</html>