index.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>PolitiScales - Quiz</title>
  7. <meta
  8. name="description"
  9. content="Welcome to the PolitiScale, the online political test. You will be confronted to a series of affirmations and for each of them you will have to click on the button which corresponds the most to your opinion."
  10. />
  11. <link rel="stylesheet" href="/style.css" type="text/css" media="screen" />
  12. <link rel="shortcut icon" href="/images/favicon.ico" />
  13. <meta property="og:url" content="https://dbhq.github.io/" />
  14. <meta property="og:title" content="PolitiScales, DBHQ Edition" />
  15. <meta property="og:locale" content="en_US" />
  16. <meta
  17. property="og:description"
  18. content="Welcome to the PolitiScale, the online political test. You will be confronted to a series of affirmations and for each of them you will have to click on the button which corresponds the most to your opinion."
  19. />
  20. <meta property="og:image" content="/images/facebook-preview.jpg" />
  21. </head>
  22. <body>
  23. <header>
  24. <div id="header">
  25. <h1><a href="/">PolitiScales</a></h1>
  26. </div>
  27. </header>
  28. <div id="content">
  29. <div id="mainFrame">
  30. <h2 id="question-number">Loading...</h2>
  31. <div class="questionBox"><p id="question-text"></p></div>
  32. <div class="navButtons questionButtons">
  33. <button onclick="next_question(1)" class="strong-agree">
  34. Absolutely agree
  35. </button>
  36. <button onclick="next_question(2/3)" class="agree">
  37. Somewhat agree
  38. </button>
  39. <button onclick="next_question(0)" class="neutral">
  40. Neutral or hesitant
  41. </button>
  42. <button onclick="next_question(-2/3)" class="disagree">
  43. Rather disagree
  44. </button>
  45. <button onclick="next_question(-1)" class="strong-disagree">
  46. Absolutely disagree
  47. </button>
  48. <a href="#" class="button" onclick="prev_question()" id="back_button">
  49. Return to the previous question
  50. </a>
  51. <a class="button" href="/" id="back_button_off">
  52. Go back to home page
  53. </a>
  54. </div>
  55. </div>
  56. </div>
  57. <div id="footer">
  58. <p>
  59. This quiz is a slightly modified version of
  60. <a href="https://www.politiscales.net/">PolitiScales</a>, which is based
  61. on <a href="https://8values.github.io/">8values</a>.
  62. </p>
  63. </div>
  64. <script src="/quiz.js"></script>
  65. </body>
  66. </html>