-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.38 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.38 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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<!--
JavaScript 7th Edition
Chapter 3
Hands-on Project 3-1
Author: Professor Richard Krasso
Date: 11/25/22
Filename: index.html
-->
<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="site.css" />
<script defer type="text/javascript" src="menu.js"></script>
</head>
<body>
<header>
<h1>
Hands-on Project 3-1
</h1>
</header>
<article>
<h2>Lunch selections</h2>
<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>