-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquestion7.html
More file actions
25 lines (24 loc) · 1.07 KB
/
question7.html
File metadata and controls
25 lines (24 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
<!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 that same iPhone 11 Pro with a credit card and paid the monthly minimum only, roughly how long might you pay a credit card bill solely for the phone purchase?</p>
<div class="responses">
<button onclick="seven()">5 months</button>
<button onclick="seven()">12 months (1 year)</button>
<button onclick="seven()">26 months (2 years, 2 months)</button>
<button onclick="seven()">61 months (5 years, 1 month)</button>
<button id = "correct" onclick="seven()">113 months (9 years, 5 months)</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="index2.html">Return home</a>
</body>
</html>