-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
43 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<link href="https://unpkg.com/[email protected]/dist/css/ionicons.min.css" rel="stylesheet">
<title>Antiques Bazaar | Buy Antiques Online</title>
</head>
<body>
<header>
<div class="overlay"></div>
<nav>
<h2>All Products</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="product.html">All Products</a></li>
<li class="cart">
<a href="cart.html">
<ion-icon name="basket"></ion-icon>Cart<span></span>
</a>
</li>
</ul>
</nav>
</header>
<div class="products-container">
<div class="product-header">
<h5 class="product-title">PRODUCTS</h5>
<h5 class="price">PRICE</h5>
<h5 class="quantity">QUANTITY</h5>
<h5 class="total">TOTAL</h5>
</div>
<div class="products">
</div>
</div>
</body>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<script src="main.js"></script>
</html>