-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
42 lines (37 loc) · 1.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
<!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="./styles/main.css">
</head>
<body>
<div id="top"></div>
<header class="">
<nav class="flex nav-height">
<div class="left-nav margin-right">
<div class="logo-wrapper">
<a href="#top" class="text-decoration-none-black"><img src="./img/logo.svg" alt="Black Estate Logo"></a>
</div>
</div>
<div class="right-nav flex space-between align-center text-align-center">
<a href="./index.html" class="text-decoration-none-black max-width-nav flex-one very-very-very-small-padding"><div class="min-width-nav">Home</div></a>
<a href="./shop.html" class="text-decoration-none-black max-width-nav flex-one very-very-very-small-padding"><div class="min-width-nav">Shop</div></a>
<a href="./about.html" class="text-decoration-none-black max-width-nav flex-one very-very-very-small-padding"><div class="min-width-nav">About</div></a>
<a href="./experience.html" class="text-decoration-none-black max-width-nav flex-one very-very-very-small-padding"><div class="min-width-nav">Experiences</div></a>
<a href="./club.html" class="text-decoration-none-black max-width-nav flex-one very-very-very-small-padding"><div class="min-width-nav">Join The Club</div></a>
<a href="#top" class="text-decoration-none-black max-width-nav flex-one very-very-very-small-padding"><img src="./img/cart2.png" class="margin-right cart-logo-height"></a>
</div>
</nav>
</header>
<section class="small-left-right-padding">
<h3>(-- Back</h3>
<div>
<h2>Your Cart</h2>
</div>
</section>
<h1>Cart</h1>
</body>
</html>