Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. </head>
  6. <body>
  7.  
  8. <div class="container">
  9. <header class="header">
  10. <h1 id="title">Music Survey Form</h1>
  11. <p id="subt">Thank you for participating</p><br>
  12. </header>
  13.  
  14. <form id="survey-form">
  15. <div class="form-group">
  16. <label for="name" id="name-label">
  17. <input type="text" id="name" placeholder="Name">
  18. </label>
  19. <br>
  20. <label for="email" id="email-label">
  21. <input type="text" id="email" placeholder="Enter your email">
  22. </label>
  23. <br>
  24. <label for="number" id="number-label">
  25. <input type="text" id="number" placeholder="Age" max="200">
  26. </label>
  27. <br>
  28. </div>
  29.  
  30. <div class="form-group">
  31. <p>Where do you listen music mostly?</p>
  32. <select id="dropdown">
  33. <option disabled selected value>Select option</option>
  34. <option value="at home">At home</option>
  35. <option value="in the car">In the car</option>
  36. <option value="anywhere">Anywhere(MP3 player)</option>
  37. <option value="other">Other</option>
  38. </select>
  39.  
  40. <p>Which option best describes your current role?</p>
  41. <input type="radio" name="option" value="student"> Student<br>
  42. <input type="radio" name="option" value="full time job"> Full Time Job<br>
  43. <input type="radio" name="option" value="not sure"> Other<br>
  44. </div>
  45.  
  46. <div class="form-group">
  47. <p>Select how often you purchase Music CDs</p>
  48. <select id="favorite">
  49. <option disabled selected value>Select an option</option>
  50. <option value="weekly">Weekly</option>
  51. <option value="a few cds">A few CDs each year</option>
  52. <option value="monthly">monthly</option>
  53. <option value="never">Never purchase</option>
  54. </select>
  55. </div>
  56.  
  57. <div class="form-group">
  58. <p>Select your favorite types of music:</p>
  59. <input type="checkbox" name="option" value="Pop"> Pop<br>
  60. <input type="checkbox" name="option" value="rock"> Rock<br>
  61. <input type="checkbox" name="option" value="folk"> Folk<br>
  62. <input type="checkbox" name="option" value="rap"> Rap<br>
  63. <input type="checkbox" name="option" value="techno"> Techno<br>
  64. <input type="checkbox" name="option" value="country"> Country<br>
  65. <input type="checkbox" name="option" value="metal"> Metal<br>
  66. <input type="checkbox" name="option" value="r'n'b"> R'n'B<br>
  67. <input type="checkbox" name="option" value="classical"> Classical<br>
  68. <input type="checkbox" name="option" value="other"> Other<br>
  69. </div>
  70.  
  71. <div class="form-group">
  72. <p>What role does music play in your life?</p>
  73. <textarea id="comments" class="input-textarea" name="comment" placeholder="Enter your comment here..."> </textarea>
  74. </div>
  75.  
  76. <div class="form-group">
  77. <button type="submit" id="submit" class="submit-button">Submit</button>
  78. </div>
  79.  
  80. </form>
  81. </div>
  82.  
  83. </body>
  84. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement