Advertisement
Guest User

asdsa

a guest
May 21st, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <link rel="stylesheet" type="text/css" href="estilos.css">
  6. </head>
  7. <body>
  8. <h1>Encuesta sobre Desarrollo Web</h1>
  9. <form id="encuesta" action="clase3.html">
  10. <label for="nombre">Nombre: </label>
  11. <input type="text" name="nombre" id="nombre" placeholder="abc">
  12. <br>
  13. <label for="apellido">Apellido: </label>
  14. <input type="text" name="apellido" id="apellido" placeholder="abc">
  15. <br>
  16. <label for="edad">Edad: </label>
  17. <input type="number" name="edad" id="edad" placeholder="999">
  18. <br>
  19. <label for="email">Email: </label>
  20. <input type="text" name="email" id="email" placeholder="ejemplo@dominio.com">
  21. <br>
  22. <label for="programo">¿Programaste alguna vez?: </label>
  23. Si: <input type="radio" name="programo" id="programo" value="SI">
  24. No: <input type="radio" name="programo" id="programo" value="NO">
  25. <br>
  26. <label for="tecnos">¿Qué tecnologías domina?: </label>
  27. <br>
  28. HTML: <input type="checkbox" name="html" id="html">
  29. JavaScript: <input type="checkbox" name="js" id="js">
  30. CSS: <input type="checkbox" name="css" id="css">
  31. PHP: <input type="checkbox" name="php" id="php">
  32. MySQL: <input type="checkbox" name="mysql" id="mysql">
  33. <br>
  34. <button>Enviar</button>
  35. </form>
  36.  
  37. <div>
  38. Subscribete a nuestro Newsletter
  39. <input type="email" required id="emailNews">
  40. <a href="#" id="link">Enviar</a>
  41. </div>
  42.  
  43. <script src="formulario.js"></script>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement