-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 1.11 KB
/
index.html
File metadata and controls
47 lines (35 loc) · 1.11 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
<html>
<head>
<title>Super awesome shopping cart</title>
<link href='styles.css' rel='stylesheet'>
</head>
<body>
<div>
<p>
Please click the products you want
</p>
<ul id='products'>
<li data-price='1.25'>Apple - $1.25</li>
<li data-price='1.45'>Banana - $1.45</li>
<li data-price='1.95'>Orange - $1.95</li>
<li data-price='2.99'>Plum - $2.99</li>
</ul>
</div>
<div>
<p>
Your shopping cart
</p>
<ul id='cart'>
</ul>
<div class='prices'>
Sub total: <span id='subtotal'>$0.00</span>
<br />
Tax (7%): <span id='tax'>$0.00</span>
<br />
Total: <span id='total'>$0.00<span>
</div>
</div>
<script src='https://code.jquery.com/jquery-2.1.4.min.js' type='text/javascript'></script>
<script src='scripts.js' type='text/javascript'></script>
</body>
</html>