-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlunchSelections_txt.html
More file actions
41 lines (39 loc) · 1.27 KB
/
lunchSelections_txt.html
File metadata and controls
41 lines (39 loc) · 1.27 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<!--
uthor: Kylie Drawdy
Date: 9/03/24
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Hands-on Project 3-1</title>
<link rel="stylesheet" href="styles/styles.css" />
<!-- Added script element -->
<script src="js/lunchSelections_txt.js" defer></script>
</head>
<body>
<header>
<h1>
Lunch selections
</h1>
</header>
<article>
<form>
<input type="checkbox" class="menuItem" id="item1" value="11.95" />
<label for="item1">Fried chicken ($11.95)</label>
<input type="checkbox" class="menuItem" id="item2" value="13.95" />
<label for="item2">Fried halibut ($13.95)</label>
<input type="checkbox" class="menuItem" id="item3" value="10.95" />
<label for="item3">Hamburger ($10.95)</label>
<input type="checkbox" class="menuItem" id="item4" value="17.95" />
<label for="item4">Grilled salmon ($17.95)</label>
<input type="checkbox" class="menuItem" id="item5" value="8.95" />
<label for="item5">Side salad ($8.95)</label>
</form>
<aside>
Total Order Cost: <span id="billTotal">$0</span>
</aside>
</article>
</body>
</html>