-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
65 lines (51 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart</title>
<link rel="shortcut icon" href="static/images/sample-modified.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap"
rel="stylesheet">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="static/css/styles.css">
</head>
<body>
<div class="body_container" style="background-image: url(static/images/tamara-bellis.jpg);">
<!--==================== Header ====================-->
<div class="nav">
<div class="menu" onclick="openNav()">
<div class="hamburger"></div>
</div>
<div class="title">
<img src="static/images/sample-modified.png" alt="Well logo" class="title_logo">
<a href="index.html" class="title_link">World Envie Land Legacy</a>
</div>
<div class="cart">
<a href="cart.html"><i class='bx bx-cart-alt'></i></a>
</div>
</div>
<!--==================== MENU ====================-->
<div id="nav_bar" class="nav-overlay">
<div class="nav-overlay-content">
<p class="nav_description">
Own your shirt not only in real life, but also in the metaverse...<br>
Non-Fungible Tokens (NFTs) represent your ownership of a specific product.<br>
NFTs are stored on a blockchain and can be bought, sold, and traded like other assets.
</p>
<a href="index.html">Home</a>
<a href="shop.html">Shop</a>
<a href="cart.html">Cart</a>
<a href="contact.html">Contact</a>
<a href="about_us.html">About us</a>
<!--<a href="#">Clients</a>-->
</div>
</div>
<div class="slide-control"></div>
<div class="overlay"></div>
</div>
<script src="static/js/main.js"></script>
</body>
</html>