Advertisement
MrsMcLead

forms

Feb 20th, 2014
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.37 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <title>
  5. Forms
  6. </title>
  7.  
  8. </head>
  9.  
  10.  
  11. <body>
  12. <!-- essay -->
  13. <form>
  14. <p>
  15. <fieldset>
  16. <label >
  17. How was the world made?
  18. </label><br>
  19. <textarea rows = "10" cols = "40"></textarea>
  20. </fieldset>
  21. </p>
  22. <form>
  23. <p>
  24. <!--drop down menu-->
  25. <form>
  26. <label>
  27. What day is it?
  28. </label>
  29. <select>
  30. <option> Monday </option>
  31. <option> Tuesday </option>
  32. <option> Wednesday </option>
  33. <option> Thursday </option>
  34. <option> Friday </option>
  35. <option> Saturday </option>
  36. <option> Sunday </option>
  37. </select>
  38. <input type="submit" value="Submit">
  39. </form>
  40.  
  41. <!--checkboxes-->
  42. <form>
  43. <label>
  44. What days were good days for you?
  45. </label>
  46. <p>
  47. <input type="checkbox"></input> Monday
  48. </p>
  49. <p>
  50. <input type="checkbox"></input> Tuesday
  51. </p>
  52. <p>
  53. <input type="checkbox"></input> Wednesday
  54. </p>
  55. <p>
  56. <input type="checkbox"></input> Thursday
  57. </p>
  58. <p>
  59. <input type="checkbox"></input> Friday
  60. </p>
  61. <p>
  62. <input type="checkbox"></input> Saturday
  63. </p>
  64. <p>
  65. <input type="checkbox"></input> Sunday
  66. </p>
  67. </form>
  68. <p>
  69.  
  70. <!--radio button-->
  71. <p>
  72. <form>
  73. <label>
  74. Who is the craziest member of Block 1 Web Design?
  75. </label><br>
  76. <input type = "radio"></input>I love everyone in the class!<br>
  77. </form>
  78. </p>
  79.  
  80. <!--fields-->
  81. <form>
  82. <p>
  83. <fieldset>
  84. <label>
  85. Tell me about you!
  86. </label><br>
  87. <label>Name: </label>
  88. <input type = "text" size "50"></input>
  89. </fieldset>
  90. </p>
  91. </form>
  92.  
  93. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement