-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquestion5.html
More file actions
26 lines (25 loc) · 1.07 KB
/
question5.html
File metadata and controls
26 lines (25 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Quiz</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="script.js"></script>
</head>
<body class="quizBackground">
<p class="question">If you purchased a brand new car for $20,000 in 2021, roughly how much will your vehicle be worth in 5 years?</p>
<div class="responses">
<button onclick="five()">$5,700</button>
<button id = "correct" onclick="five()">$10,500</button>
<button onclick="five()">$12,800</button>
<button onclick="five()">$17,400</button>
<button onclick="five()">$20,000</button>
</div>
<p class="correctAnswer"id="correctOrWrong"></p>
<p class="correctAnswer" id="correctAnswer"></p>
<p class="answerText" id="answerText"></p>
<a class="nextPageBtn" id="nextPageBtn" href="question6.html">Next Question</a>
<!-- <p class="coolLink" href="https://caredge.com/depreciation">Looking to buy a vehicle? Check out this depreciation calculator!</p> -->
</body>
</html>