-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLunch.html
More file actions
32 lines (27 loc) · 981 Bytes
/
Lunch.html
File metadata and controls
32 lines (27 loc) · 981 Bytes
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
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Simple Web Page</title>
<link rel="stylesheet" href="Lunch.css">
</head>
<body>
<h1>Lunch Game!</h1>
<div id="instructions">
<p>You get a weekly allowance of $<span id="money"></span> to buy lunch. Sandwiches are always between $1 and
$5, but you never know the price until you get to school.</p>
<p>Your goal is to be able to buy lunch every day of the week.</p>
</div>
<div id="orderForm">
<label>How many sandwiches do you want per day?
<br />
<input type="number" id="numSandwiches" />
</label>
<button type="button" id="placeOrder">Place Order</button>
</div>
<div id="receipt"></div>
<script src="Lunch.js"></script>
</body>
</html>