forked from maheshkk/samsung-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
38 lines (36 loc) · 972 Bytes
/
cart.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
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html>
<head>
<title>Samsung Demo Shop</title>
<link rel="stylesheet" href="src/css/styles.css">
<script src="https://code.jquery.com/jquery-3.1.1.slim.js" crossorigin="anonymous"></script>
<script src="src/js/script.js"></script>
<script src="src/js/cart.js"></script>
</head>
<body>
<nav class="product-filter">
<div>menu</div>
<div>
<h2 align="center">Samsung Shop</h2>
</div>
<div>
<a href = "/checkout.html">
<img src="">
<i id = "shopping-cart-count">1</i>
</a>
</div>
</nav>
<div>
<h1>Your Cart</h1>
<div id="cart-items">
</div>
</div>
<div class = "cart-costs">
<h3 class="cart-item-pad-top"> Total: $</h3>
<h3 class="cart-item-pad-top" id = "total-cost"></h3>
<div class="button" id="checkout-button">
<h5>Checkout</h5>
</div>
</div>
</body>
</html>