-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
119 lines (89 loc) · 3.61 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
110
111
112
113
114
115
116
117
118
119
<!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="/style.css">
<link rel="stylesheet" href="/cart.css">
<link rel="stylesheet" href="/shop.css">
</head>
<body>
<header>
<nav>
<h1 class="hero-logo"><a href="index.html">Sippin'iT</a></h1>
<ul>
<li><a href="shop.html">Shop</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="/wishlist.html">Wishlist</a></li>
<li><a href="#">Login</a></li>
</ul>
</nav>
</header>
<div class="deliveryAddressDiv">
<h3>Delivery Address</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing.</p>
<button class="editAddressButton">Edit Address</button>
</div>
<div class="card-container">
<div class="product-card">
<div class="badge">Hot</div>
<div class="product-tumb">
<img src="starbucksCaremal.png" width="100%" height="200px" alt="">
</div>
<div class="product-details">
<span class="product-catagory">Hot Frappers</span>
<h4><a href="">Caremal on the top</a></h4>
<p>Tasty Caremal milk with some good chocolate crush</p>
<div class="product-bottom-details">
<div class="product-price"><small>$250.00</small>$79.99</div>
<div class="product-links">
<a href=""><i class="fa fa-heart"></i></a>
<a href=""><i class="fa fa-shopping-cart"></i></a>
</div>
</div>
</div>
</div>
<div class="product-card">
<div class="badge">Hot</div>
<div class="product-tumb">
<img src="americano.jpg" alt="">
</div>
<div class="product-details">
<span class="product-catagory">Cold Coffee</span>
<h4><a href="">Amaricano with Cookies</a></h4>
<p>Hot Americano without sugar for the perfect start of the day.</p>
<div class="product-bottom-details">
<div class="product-price"><small>$230.00</small>$96</div>
<div class="product-links">
<a href=""><i class="fa fa-heart"></i></a>
<a href=""><i class="fa fa-shopping-cart"></i></a>
</div>
</div>
</div>
</div>
<div class="product-card">
<div class="badge">Hot</div>
<div class="product-tumb">
<img src="javachip.jpg" alt="" width="500px" height="500px">
</div>
<div class="product-details">
<span class="product-catagory">Frappers</span>
<h4><a href="">Java Choco Chip</a></h4>
<p>Choco chip with some caramel latte on the top</p>
<div class="product-bottom-details">
<div class="product-price"><small>$700</small>$230.99</div>
<div class="product-links">
<a href=""><i class="fa fa-heart"></i></a>
<a href=""><i class="fa fa-shopping-cart"></i></a>
</div>
</div>
</div>
</div>
</div>
<button class="checkOutTheItems">
Check Out the Items
</button>
</body>
</html>