forked from nitish906/shopbop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cart.html
62 lines (62 loc) · 2.21 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
<!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="cart.css">
</head>
<body>
<div id = "container">
<div>
<div>
<img id ="bag" src= "./cart.jpeg" alt="">
<h3 id="title">Shopping Bag</h3>
<!-- <p id="st">tems are saved to your bag, but availability is not guaranteed.</p> -->
</div>
<div id="box">
<img src="https://m.media-amazon.com/images/G/01/Shopbop/p/prod/products/rails/rails314911b018/rails314911b018_1648048514412_2-0._QL95_UX184_.jpg" alt="">
<p id="model">Fairfax Short Sleeve Shirt</p>
<p id="price" ><b>$118.00</b></p>
<p id="color"><b>Color:</b>Lavender</p>
<p id="size"><b>Size:</b>M</p>
<p id="quan"><b>Qunatity</b></p>
<button id="switch">Edit</button> <br> <br>
<button id="switch">Delete</button>
<br>
<!-- <form action="">
<input type="submit" id="btn">
</form> -->
</div>
</div>
<div id="order">
<h2 id="h">Order Summary</h2>
<div id="one">
<div>
<div><p>Products(1)</p></div>
<div> <p id="shop">Shipping &Handling</p></div>
<hr>
<div> <p><b>Subtotal</b>(before taxes)</p></div>
</div>
<div id="two">
<div><p>$118.00</p></div>
<div><p>FREE</p></div>
<hr>
<div><b>$118.00</b></div>
</div>
</div>
<form action="">
<input type="submit" id="btn">
</form>
<h4>Additional Fees May Apply</h4>
<p>Shipping options, Import fees, Return fees. <a href=""><b><u>Details</u></b</a></p>
<hr>
<img src="./download.png" alt="download">
<br>
<a href=""><b><u>Contact Customer Service</u> </b></a>
</div>
</div>
</body>
</html>
<script src="cart.js"></script>