-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquestion1.html
More file actions
27 lines (25 loc) · 1.05 KB
/
question1.html
File metadata and controls
27 lines (25 loc) · 1.05 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
27
<!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>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&family=Varela+Round&display=swap" rel="stylesheet">
</head>
<body class="quizBackground">
<p class="question">If you were given $1000 right now, what would you do with that money?
</p>
<div class="responses">
<button onclick="one()">Time to go shopping!</button>
<button onclick="one()">I would put it in my bank savings account.</button>
<button onclick="one()">I would pay off my credit card.</button>
<button onclick="one()">I would invest it in the stock market. </button>
</div>
<p id="answerText"></p>
<a class="nextPageBtn" id="nextPageBtn" href="question2.html">Next Question</a>
</body>
</html>