index.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 name="description" 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.">
  8. <link rel="stylesheet" href="/style.css" type="text/css" media="screen">
  9. <meta property="og:url" content="https://dbhq.github.io/">
  10. <meta property="og:title" content="PolitiScales, DBHQ Edition">
  11. <meta property="og:locale" content="en_US">
  12. <meta property="og:description" 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.">
  13. <meta property="og:image" content="/images/facebook-preview.jpg">
  14. </head>
  15. <body>
  16. <header>
  17. <div id="header">
  18. <h1><a href="/">PolitiScales</a></h1>
  19. </div>
  20. </header>
  21. <div id="content">
  22. <div id="mainFrame">
  23. <h2 id="question-number">Loading...</h2>
  24. <div class="questionBox">
  25. <p id="question-text"></p>
  26. </div>
  27. <div class="navButtons">
  28. <button class="buttonQuestion" onclick="next_question(1)" style="background-color: #1b5e20;">Absolutely agree</button>
  29. <button class="buttonQuestion" onclick="next_question(2/3)" style="background-color: #4caf50;">Somewhat agree</button>
  30. <button class="buttonQuestion" onclick="next_question(0)" style="background-color: #bbbbbb;">Neutral or hesitant</button>
  31. <button class="buttonQuestion" onclick="next_question(-2/3)" style="background-color: #f44336;">Rather disagree</button>
  32. <button class="buttonQuestion" onclick="next_question(-1)" style="background-color: #b71c1c;">Absolutely disagree</button>
  33. </div>
  34. <div class="navButtons">
  35. <button class="button" onclick="prev_question()" id="back_button">Return to the previous question</button>
  36. <button class="button" onclick="location.href='/';" id="back_button_off">Go back to home page</button>
  37. </div>
  38. </div>
  39. </div>
  40. <div id="footer">
  41. <p>
  42. This quiz is a slightly modified version of <a href="https://www.politiscales.net/">PolitiScales</a>, which is based on <a href="https://8values.github.io/">8values</a>.
  43. </p>
  44. </div>
  45. <script src="/quiz.js"></script>
  46. </body>
  47. </html>