-
Notifications
You must be signed in to change notification settings - Fork 0
/
level1.html
27 lines (22 loc) · 833 Bytes
/
level1.html
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>Level 1</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="gameArea">
<h1 id="easyTitle"> Easy</h1>
<h1> Day 1 (Level 1)</h1>
<h3 id="questionTitle"> Customer 1 (Question 1)</h3>
<p id="question"> <b> Howard:</b> I have 5 pennies, 3 nickels, 9 dimes, 8 quarters and 5 fifty-cent. How much money do I have? </p>
<label> Answer: $</label> <input id="answerInput">
<br> <div id="submitButton"> <button onclick="level1Q1()">
Submit </button> </div> <a href="index.html"> <button id="credit"> Back to Home Page</button></a>
<div id="display"> </div>
</div>
<script src="script.js"></script>
</body>
</html>