-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcart.html
109 lines (77 loc) · 3.96 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!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>Document</title>
<link rel="stylesheet" href="./styles/cart.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- -------------------------- NavBar----------------------------------- -->
<div id="navBar">
</div>
<!-- -------------------------------------NavBar Downportion-------------------------- -->
<div id="under_nav">
<div id="under_nav_image">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Klarna_Payment_Badge.svg/2560px-Klarna_Payment_Badge.svg.png"
alt="image of logo">
</div>
<label>Shop now.Pay overtime with Klarna. <a href="">See Details</a></label>
</div>
<!-- -------------------------Medium top------------------ -->
<div id="hedaingPhone">
<h2 id='forShopping'>Shopping Cart</h2>
<label id="phone"><i class="fa fa-phone" style="font-size:30px;color:black;"></i></label> <label
id="phoneNum">(888) 622-6953</label>
</div>
<!-- ------------bottom of top----------------- -->
<div id="topDiv">
<img src="https://columbia.scene7.com/is/image/ColumbiaSportswear2/20590_C_U_X1_SU20_CGR_HP_Banner_Black_Logo_resized_@2x?$aem_png$"
alt="logoImage">
<p>Members get <b>free shipping + $9.70 in rewards </b> on this purchase </p>
<a href="" id="for_free">Join for free > </a> <a href="" id="login">Login ></a>
</div>
<div id="informations">
<span id="items" class="onecss">1 Item</span>
<span id="price" class="onecss">Price</span>
<span id="qty" class="onecss">QTY</span>
<span id="sub" class="onecss">SUBTOTAL</span>
<span id="summary" class="onecss">Order Summary</span>
</div>
<hr>
<!-----------------------div for cart -->
<div id="containerHead" style="display: flex;">
<div id="container">
</div>
<div id="order_summary" style="height: 70%;">
<a href="">Have a Promo Code ? </a>
<!-- <div> -->
<p class="upper_details" style="font-weight: bolder;">SUBTOTAL <label class="upper_values"
id="subtotalforsummry"></label></p>
<p class="upper_details" style="font-weight: bolder;margin-top: 10px;">STANDARD DELIVERY <label
class="upper_values" id="stndlv">$45</label></p>
<p class="upper_details" style="font-weight: bolder;">ESTIMATED TAX <label class="upper_values"
id="esttax">$0</label> </p>
<!-- </div> -->
<div>
<hr>
</div>
<h4 style="height: 0px;"> ESTIMATED TOTAL <label id="totalestimate"></label> </h4>
<h4>YOU SAVE <label id="save">$49</label></h2>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Klarna_Payment_Badge.svg/2560px-Klarna_Payment_Badge.svg.png"
alt="">
<p style="margin-left: 20%;height: 0px;">4 interest-free payments of $13.99. </p>
<a href="" style="margin-left: 40%;height: 0px;"> Learn More</a>
<br> <br>
<!-- login page link put in href and signup too -->
<p style="margin-left: 25%;"><a href="./Signup.html">LOGIN</a> <a href="./Signup.html">SIGNUP NOW</a></p>
<button id="guestcheckout">GUEST CHECKOUT</button>
<p style="margin-left: 30%;">Or CHECKOUT with</p>
</div>
</div>
<span class="notification" id="Empty"> ❌ Cart is Empty</span>
</body>
<script src="./scripts/cart.js"></script>
</html>