Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel = stylesheet href="style.css"/>
<script src="logic.js"></script>
</head>
<body>
<div class="container">
<h1 class="title">Political Compass Project</h1>
<div class = "questionBox">
<h1 id="orderHeader">How would you like the questions presented?</h1>
<button onclick="startButton()"class="agree" id="startButton">Standard order</button>
<button onclick="randomStartButton()"class="agree" id="randomStartButton">Random order</button>
<div id="question-container" class="hide">
<h2 id="questionHeader">Question 1/30</h2>
<h2 id= "scorebox"></h2>
<h3 id= "question"></h3>
<button onclick="buttonClickStrongAgree()"class="strongAgree" id="strongAgreeButton">Strongly Agree</button>
<br>
<button onclick="buttonClickAgree()"class="agree" id="agreeButton">Agree</button>
<br>
<button onclick="buttonClickNeutral()"class="neutral" id="neutralButton">Neutral</button>
<br>
<button onclick="buttonClickDisagree()"class="disagree" id="disagreeButton">Disagree</button>
<br>
<button onclick="buttonClickStrongDisagree()"class="strongDisagree" id="strongDisagreeButton">Strongly disagree</button>
<br>
<a href="results.html"><button onclick="scoreSave()"class ="results" id="resultsButton">Show my results!</button></a>
</div>
<br>
</div>
</div>
</body>
</html>