forked from sam7789/Tomtop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shoppingcart.html
39 lines (36 loc) · 1.27 KB
/
shoppingcart.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
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart</title>
<link rel="stylesheet" href="../css/shoppingcart.css">
</head>
<body>
<div class="cart_top">
<div class="cart_top_left">
<div class="top_nav_logo">
<a href="#link home page"><img src=" https://static.tomtop.com/tomtop/cart/images/logo.png?4.1.25"
alt="top_nav_logo"></a>
</div>
</div>
<div class="cart_top_right">
<ul>
<li class="shopping"> <a id="shopping" href="#">SHOPPING CART</a> </li>
<li class="shipping"> <a id="shipping" href="#">SHIPPING & PLACE ORDER</a> </li>
<li class="payment"> <a id="payment" href="#">PAYMENT</a></li>
</ul>
</div>
</div>
<div class="cart_box">
<h2 class="cart_text">Your Shopping Cart</h2>
<div class="cart_box_left">
<div class="product-container"></div>
<div id= "total" ><h1></h1></div>
</div>
<div class="cart_box_right"></div>
</div>
</body>
</html>
<script src="../js/shoppingcart.js"></script>