Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.  
  4. <body>
  5. <h2>Formulario</h2>
  6. <form action="">
  7. Nome: <br>
  8. <input type="text" name="nome">
  9. <br>
  10. Password:<br>
  11. <input type="password" name="password" value="">
  12. <br>
  13. User email: <br>
  14. <input type="email" name="email" value="">
  15. <br>
  16. Aniversario:
  17. <br>
  18. <input type="date" name="bday" value="">
  19. <br>
  20. <br>
  21. Genero:<br>
  22. <input type="radio" name="genero" value="Masculino" > Masculino <br>
  23. <input type="radio" name="genero" value="Feminino"> Feminino <br>
  24. <input type="radio" name="genero" value="Grosso"> Grosso/Grossa <br>
  25. <br>
  26. Grau academico
  27. <select name="grau">
  28. <option value="grau">12 ano</option>
  29. <option value="grau">CTESP</option>
  30. <option value="grau">Licenciatura</option>
  31. <option value="grau">Mestrado</option>
  32. </select>
  33. <br>
  34. <br>
  35. Transportes:<br>
  36. <input type="checkbox" name="transporte" value="autocarro">Eu venho de autocarro <br>
  37. <input type="checkbox" name="transorte" value="carro">Eu venho de carro <br>
  38. <br>
  39. Descrição:<br>
  40. <textarea name="descricao" rows="10" cols="30"> Aqui escrevemos um pequeno texto com a textarea </textarea>
  41. <br>
  42. Selecionar um ficheiro: <br>
  43. <input type="file" name="file" value="">
  44. <br>
  45. <input type="submit" name="" value="submit">
  46. <br>
  47. <button type="button" onclick="alert('ola')">Clica aqui </button>
  48. </form>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement