Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. <head>
  2. <title>Survey Form</title>
  3. </head>
  4.  
  5. <body>
  6.  
  7. <h1 id="title">
  8. Best Western Isekia
  9. </h1>
  10.  
  11. <P id="description">This is a simple survey to determine which Western Isekai is best Western Isekai.</p>
  12. <!--Form-->
  13.  
  14. <div id="form-container">
  15.  
  16. <form action="" id="survey-form">
  17.  
  18. <!--enter name-->
  19. <div>
  20. <div>
  21. <label for="name" id="name-label">Name:</label>
  22. </div>
  23. <div>
  24. <input type="text" name="name" id="name" class="input-field" placeholder="Enter Your Name" required maxlength="50" size="30">
  25. </div>
  26. </div>
  27.  
  28. <!--enter email-->
  29.  
  30. <div>
  31. <div>
  32. <label for="email" id="email-label">Email:</label>
  33. </div>
  34. <div>
  35. <input type="email" name="email" id="email" class="input-field" placeholder="Enter Your Email" required maxlength="50" size="30">
  36. </div>
  37. </div>
  38.  
  39. <!--Ask user age-->
  40. <div>
  41. <div>
  42. <label for="number" id="number" id="number-label">How Old Are You?</label>
  43. <input type="number" name="number" id="number" class="input-field" placeholder="66" min="0" max="100" step="1" size="30">
  44. </div>
  45. </div>
  46.  
  47. <!--Radio Buttons-->
  48.  
  49. <div>
  50. <div>
  51. <label for="gender">Gender:</label>
  52. </div>
  53. <div>
  54. <input type="radio" name="radio-buttons" value="Male" id="gender">Male
  55. </div>
  56. <div>
  57. <input type="radio" name="radio-buttons" value="Female" id="gender">Female
  58. </div>
  59. </div>
  60.  
  61. <!--Dropdown List-->
  62.  
  63. <div>
  64. <div>
  65. <label for="dropdown">Which Isekia is best Isekai?</label>
  66. </div>
  67. <div>
  68. <select name="dropdown" id="dropdown">
  69. <option value="Black Knight">Black Knight</option>
  70. <option value="The Chronicles of Narnia">The Chronicles of Narnia</option>
  71. <option value="Army of Darkness">Army of Darkness</option>
  72. <option value="The Matrix">The Matrix</option>
  73. <option value="Never-Ending Stor">Never-Ending Story</option>
  74. <option value="Jumaji">Jumanji</option>
  75. <option value="Hitchhiker's guide to the Galaxy">Hitchhiker's guide to the Galaxy</option>
  76. <option value="Back to the Future">Back to the Future</option>
  77. <option value="Blues Clues">Blues Clues</option>
  78. </select>
  79. </div>
  80. </div>
  81.  
  82. <!--checkbox-->
  83.  
  84. <div>
  85. <div>
  86. <label for="checkbox">Is Western Isekai better than Eastern Isekai?:</label>
  87. </div>
  88. <div>
  89. <input type="checkbox" name="yesno" value="Yes">Yes
  90. </div>
  91. <div>
  92. <input type="checkbox" name="yesno" value="No">No
  93. <div>
  94. <input type="checkbox" name="yesno" value="Yeet">Go Yeet Yourself
  95. </div>
  96. </div>
  97.  
  98. <!--Additional Comments-->
  99.  
  100. <div>
  101. <div>
  102. <label for="comments">Comments:</label>
  103. </div>
  104. <div>
  105. <textarea name="comments" maxlength="1000" cols="25" rows="6" id="comments">
  106. </textarea>
  107. </div>
  108. </div>
  109.  
  110. <!--Submit Button-->
  111.  
  112. <div>
  113. <input type="submit" value="Submit" id="submit">
  114. </div>
  115. </form>
  116. </div>
  117. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement