Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <div id="main">
  2. <h1 id="title">Organisational Survery Form</h1>
  3. <p id="description">
  4. Template
  5. </p>
  6. <form id="survey-form">
  7. <label id="name-label" class="headLbl">Name</label>
  8. <input id="name" placeholder="name" required>
  9. <br>
  10.  
  11. <label id="email-label" class="headLbl">Email</label>
  12. <input type="email" id="email" placeholder="email" required>
  13. <br>
  14.  
  15. <label id="number-label" class="headLbl">Number</label>
  16. <input type="number" id="number" min="1" max="10" placeholder="number">
  17. <br><br>
  18.  
  19. <select id="dropdown">
  20. <option>Dropdown 1</option>
  21. <option>Dropdown 2</option>
  22. </select>
  23.  
  24. <ul id="radioList">
  25. <li><input type="radio" name="radioBtn" value="Radio 1" class="userRatings">Radio 1</li>
  26. <li><input type="radio" name="radioBtn" value="Radio 2" class="userRatings">Radio 2</li>
  27. </ul>
  28.  
  29. <ul id="checkList">
  30. <li>
  31. <input type="checkbox" value="Checkbox 1">
  32. Checkbox 1
  33. </li>
  34. <li>
  35. <input type="checkbox" value="Checkbox 2">
  36. Checkbox 2
  37. </li>
  38. </ul>
  39.  
  40. <textarea placeholder="Comment"></textarea>
  41. <br>
  42. <button id="submit">submit</button>
  43. </form>
  44. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement