Guest User

Untitled

a guest
Jul 16th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. <!--
  2. Raymond T. Martin
  3. 7/16/2018
  4. This is an edited version of Free Coding Camps Survey Form Project. Using their example as a guideline i've adjusted theirs and came up with this.
  5. -->
  6.  
  7. <h1 id=title>Survey Form</h1>
  8. <div id="form-outer">
  9. <p id="description">
  10. What would be your ideal watch?
  11. </p>
  12. <div class="rowTab">
  13. <div class="labels">
  14. <label id="name-label" for="name">* Name: </label>
  15. </div>
  16. <div class="rightTab">
  17. <input autofocus type="text" name="name" id="name" class="input-field" placeholder="Enter your name" required>
  18. </div>
  19. </div>
  20. <div class="rowTab">
  21. <div class="labels">
  22. <label id="email-label" for="email">* Email: </label>
  23. </div>
  24. <div class="rightTab">
  25. <input type="email" name="email" id="email" class="input-field" required placeholder="Enter your Email">
  26. </div>
  27. </div>
  28. <div class="rowTab">
  29. <div class="labels">
  30. <label id="number-label" for="age">* Age: </label>
  31. </div>
  32. <div class="rightTab">
  33. <input type="number" name="age" id="number" min="1" max="125" class="input-field" placeholder="Age">
  34. </div>
  35. </div>
  36. <div class="rowTab">
  37. <div class="labels">
  38. <label for="currentPos">Preferred Watch Strap?</label>
  39. </div>
  40. <div class="rightTab">
  41. <select id="dropdown" name="currentPos" class="dropdown">
  42. <option disabled value>Select an option</option>
  43. <option value="classicLeather">Classic Leather</option>
  44. <option value="contractStitching">Contrast Stitching</option>
  45. <option value="doubleRidge">Double Ridge Strap</option>
  46. <option value="rally">Rally</option>
  47. <option value="nato">NATO</option>
  48. <option value="zulu">Zulu</option>
  49. <option value="link">Link/Bracelet Strap</option>
  50. <option value="aviator">Aviator (Pilot)</option>
  51. <option value="bund">Bund</option>
  52. <option value="tropicRubber">Tropic/Rubber</option>
  53. </select>
  54. </select>
  55. </div>
  56. </div>
  57. <div class="rowTab">
  58. <div class="labels">
  59. <label for="watchesOwned">How many watches do you own?</label>
  60. </div>
  61. <div class="rightTab">
  62. <ul style="list-style: none;">
  63. <li class="radio"><label>4+<input name="radio-buttons" value="1" type="radio" class="watchesOwned" ></label></li>
  64. <li class="radio"><label>1-3<input name="radio-buttons" value="2" type="radio" class="watchesOwned" ></label></li>
  65. <li class="radio"><label>0<input name="radio-buttons" value="3" type="radio" class="watchesOwned" ></label></li>
  66. </ul>
  67. </div>
  68. </div>
  69. <div class="rowTab">
  70. <div class="labels">
  71. <label for="most-like">What's your favorite watch brand? </label>
  72. </div>
  73. <div class="rightTab">
  74. <select id="most-like" name="mostLike" class="dropdown">
  75. <option disabled selected value>Select an option</option>
  76. <option value="rolex">Rolex</option>
  77. <option value="omega">Omega</option>
  78. <option value="vincero">Vincero</option>
  79. <option value="casio">Casio</option>
  80. <option value="timex">Timex</option>
  81. <option value="seiko">Seiko</option>
  82. </select>
  83. </div>
  84. </div>
  85. <div class="rowTab">
  86. <div class="labels">
  87. <label for="preferences">Brands you've previously heard about<br>(Check all that apply): </label>
  88. </div>
  89. <div class="rightTab">
  90. <ul id="preferences" style="list-style: none;">
  91. <li class="checkbox"><label><input name="prefer" value="1" type="checkbox" class="heardOf">Rolex</label></li>
  92. <li class="checkbox"><input name="prefer" value="2" type="checkbox" class="userRatings">Omega</li>
  93. <li class="checkbox"><label><input name="prefer" value="3" type="checkbox" class="heardOf">Vincero</label></li>
  94. <li class="checkbox"><label><input name="prefer" value="4" type="checkbox" class="heardOf">Casio</label></li>
  95. <li class="checkbox"><label><input name="prefer" value="5" type="checkbox" class="heardOf">Timex</label></li>
  96. <li class="checkbox"><label><input name="heardOf" value="6" type="checkbox" class="userRatings">Seiko</label></li>
  97. </ul>
  98. </div>
  99. </div>
  100. <div class="rowTab">
  101. <div class="labels">
  102. <label for="comments">Any Comments or Suggestions?</label>
  103. </div>
  104. <div class="rightTab">
  105. <textarea id="comments" class="input-field" style="height:50px;resize:vertical;" name="comment" placeholder="Enter your comment here :)"></textarea>
  106. </div>
  107. </div>
  108. <button id="submit" type="submit">Submit</button>
  109. </form>
  110. </div>
Add Comment
Please, Sign In to add comment