Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Pick Up The Age Group</title>
  6. <link rel="stylesheet" href="stylesheets/main.css" type="text/css">
  7. </head>
  8.  
  9. <body>
  10. <h2>Please, specify your age range</h2>
  11. <form>
  12. <div class="input-group">
  13. <input type="radio" id="age-range-0-to-18">
  14. <label for="age-range-0-to-18">0-18</label>
  15. </div>
  16.  
  17. <div class="input-group">
  18. <input type="radio" id="age-range-19-to-30">
  19. <label for="age-range-19-to-30">19-30</label>
  20. </div>
  21.  
  22. <div class="input-group">
  23. <input type="radio" id="age-range-31-to-45">
  24. <label for="age-range-31-to-45">31-45</label>
  25. </div>
  26.  
  27. <div class="input-group">
  28. <input type="radio" id="age-range-46-to-60">
  29. <label for="age-range-46-to-60">46-60</label>
  30. </div>
  31.  
  32. <div class="input-group">
  33. <input type="radio" id="age-range-61-to-80">
  34. <label for="age-range-61-to-80">61-80</label>
  35. </div>
  36.  
  37. <div class="input-group">
  38. <input type="radio" id="age-range-above-80">
  39. <label for="age-range-above-80">>80</label>
  40. </div>
  41.  
  42. <div class="input-group last">
  43. <input type="submit" value="Submit"/>
  44. </div>
  45. </form>
  46.  
  47. </body>
  48.  
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement