Guest User

Untitled

a guest
Dec 9th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE HTML><html lang = "en">
  2. <head>
  3. <title>formDemo.html</title>
  4. <meta charset = "UTF-8" />
  5. </head>
  6. <body>
  7. <h1>Form Demo</h1>
  8. <form>
  9. <fieldset>
  10. <legend>Text input</legend>
  11. <p>
  12. <label>Text box</label>
  13. <input type = "text"
  14. id = "myText"
  15. value = "text here" />
  16. </p>
  17. <p>
  18. <label>Password</label>
  19. <input> type = "password"
  20. id = "myPwd"
  21. value = "secret" />
  22. </p>
  23. <p>
  24. <label>Text Area</label>
  25. <textarea> id = "myTextArea"
  26. rows = "3"
  27. cols = "80">Your text here</textarea>
  28. </p>
  29. </fieldset>
  30. </form>
  31. </body>
  32. </html>
Add Comment
Please, Sign In to add comment