-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (134 loc) · 5.98 KB
/
index.html
File metadata and controls
161 lines (134 loc) · 5.98 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Shopping Cart</title>
<link rel="shortcut icon" type="images/png" href="images/icon1.png">
</head>
<body>
<nav class="navbar" id="top">
<div class="nav-bar">
<h2><a href="#top">Retro Shop</a></h2>
<h2 id="open-cart-btn"><a href="#cart" class="cart-btn-a"><i class="fas fa-dolly"></i><span class="notification"></span></a></h2>
</div>
</nav>
<section>
<h2 class="product-header">Products</h2>
<div class="shop-items">
<div class="shop-item">
<div class="product-img"><img class="product-img-2" src="images/shoes1.jpg" alt=""></div>
<div class="shop-item-details">
<div class="name-price">
<p class="product-name">Converse Shoes</p>
<p class="product-price"> $35.37</p>
</div>
<p class="add-cart-btn">Add to cart</p>
</div>
</div>
<div class="shop-item">
<div class="product-img"><img class="product-img-2" src="images/glasses2.jpg" alt=""></div>
<div class="shop-item-details">
<div class="name-price">
<p class="product-name">Retro Glasses</p>
<p class="product-price"> $17.69</p>
</div>
<p class="add-cart-btn">Add to cart</p>
</div>
</div>
<div class="shop-item">
<div class="product-img"><img class="product-img-2" src="images/hoodie2.jpg" alt=""></div>
<div class="shop-item-details">
<div class="name-price">
<p class="product-name">Hoodie</p>
<p class="product-price"> $25</p>
</div>
<p class="add-cart-btn">Add to cart</p>
</div>
</div>
<div class="shop-item">
<div class="product-img"><img class="product-img-2" src="images/mask1.jpg" alt=""></div>
<div class="shop-item-details">
<div class="name-price">
<p class="product-name">Fancy Mask</p>
<p class="product-price"> $10</p>
</div>
<p class="add-cart-btn">Add to cart</p>
</div>
</div>
<div class="shop-item">
<div class="product-img"><img class="product-img-2" src="images/backpack1.jpg" alt=""></div>
<div class="shop-item-details">
<div class="name-price">
<p class="product-name">Backpack</p>
<p class="product-price"> $30.35</p>
</div>
<p class="add-cart-btn">Add to cart</p>
</div>
</div>
<div class="shop-item">
<div class="product-img"><img class="product-img-2" src="images/watch3.jpg" alt=""></div>
<div class="shop-item-details">
<div class="name-price">
<p class="product-name">Watch</p>
<p class="product-price"> $28</p>
</div>
<p class="add-cart-btn">Add to cart</p>
</div>
</div>
<div class="shop-item">
<div class="product-img"><img class="product-img-2" src="images/ladiesbag.jpg" alt=""></div>
<div class="shop-item-details">
<div class="name-price">
<p class="product-name">Ladies Bag</p>
<p class="product-price"> $37</p>
</div>
<p class="add-cart-btn">Add to cart</p>
</div>
</div>
<div class="shop-item">
<div class="product-img"><img class="product-img-2" src="images/blacktshirt2.jpg" alt=""></div>
<div class="shop-item-details">
<div class="name-price">
<p class="product-name">Black T-Shirt</p>
<p class="product-price"> $15.75</p>
</div>
<p class="add-cart-btn">Add to cart</i></p>
</div>
</div>
</div>
</section>
<div id="cart" class="divider"><h2>-----------------------------</h2></div>
<section class="cart-section" >
<h2 class="product-header" >Your Cart</h2>
<div class="cart-ui">
<table class="cart-table">
<thead class="table-head">
<tr>
<th><h3>Item</h3></th>
<th></th>
<th><h3>Price</h3></th>
<th style="text-align: center;"><h3>Quantity</h3></th>
<th></th>
</tr>
</thead>
<tbody class="cart-list">
<!-- !important section-->
</tbody>
</table>
<div class="cart-lastline">
<p>Total Price: </p> <p class="cart-total-price"> $0</p>
</div>
</div>
<div class="additional-btns">
<button class="last-btn purchase-btn">PURCHASE</button>
</div>
</section>
<footer>
Retro Shop ©
</footer>
<script src="js/script.js"></script>
</body>
</html>