Guest User

Untitled

a guest
Dec 18th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Zedland Health Authority's Diabetes health assessment tool</title>
  6. <link rel="stylesheet" type="text/css" href="fma.css">
  7. <script src="fma.js"></script>
  8. </head>
  9. <body>
  10. <h1 id="pageheading">Zedland Health Authority's Diabetes health assessment tool</h1>
  11. <form id="register">
  12. <fieldset id="controls">
  13. <div>
  14. <label class="button" for="Age">How old are you?</label>
  15. <input type="radio" id="agerange" name="age" value="0" checked="checked">
  16. <label for="agerange1">1-25</label>
  17. <input type="radio" id="agerange" name="age" value="5">
  18. <label for="agerange2">26-40</label>
  19. <input type="radio" id="agerange" name="age" value="8">
  20. <label for="agerange3">40-60</label>
  21. <input type="radio" id="agerange" name="age" value="10">
  22. <label for="agerange4">60+</label>
  23. </div>
  24. <div>
  25. <label class="button" for="bmi">What is your BMI?</label>
  26. <input type="radio" id="bmi" name="bmi" value="0" checked="checked">
  27. <label for="bmi1">0-25</label>
  28. <input type="radio" id="bmi" name="bmi" value="0">
  29. <label for="bmi2">26-30</label>
  30. <input type="radio" id="bmi" name="bmi" value="9">
  31. <label for="bmi3">31-35</label>
  32. <input type="radio" id="bmi" name="bmi" value="10">
  33. <label for="bmi4">35+</label>
  34. </div>
  35. <div>
  36. <label class="button" for="famhistory">Does anybody in your family have diabetes?</label>
  37. <input type="radio" id="famhistory" name="famhistory" value="0" checked="checked">
  38. <label for="famhistory1">No</label>
  39. <input type="radio" id="famhistory" name="famhistory" value="7">
  40. <label for="famhistory2">Grandparent</label>
  41. <input type="radio" id="famhistory" name="famhistory"
  42. <label for="famhistory3">Sibling</label>
  43. <input type="radio" id="famhistory" name="famhistory" value="15">
  44. <label for="famhistory4">Parent</label>
  45. </div>
  46. <div>
  47. <label class="button" for="diet">How would you describe your diet?</label>
  48. <input type="radio" id="diet" name="diet" value="0" checked="checked">
  49. <label for="diet1">Low sugar</label>
  50. <input type="radio" id="diet" name="diet" value="7">
  51. <label for="diet2">Normal sugar</label>
  52. <input type="radio" id="diet" name="diet" value="15">
  53. <label for="diet3">Quite high sugar</label>
  54. <input type="radio" id="diet" name="diet" value="15">
  55. <label for="diet4">High sugar</label>
  56. </div>
  57. </fieldset>
  58. <div>
  59. <input type="submit" value="submit">
  60. </div>
  61. </form>
  62.  
  63. </body>
  64. </html>
Add Comment
Please, Sign In to add comment