-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
43 lines (40 loc) · 1.35 KB
/
Copy pathcart.html
File metadata and controls
43 lines (40 loc) · 1.35 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
<!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="stylesheet" href="style.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div id="home-container">
<div class="home-nav">
<!-- nav element -->
<header><a href="index.html">ALLINONE</a></header>
<ul>
<li><a href="index.html">MEN</a></li>
<li><a href="index.html">WOMEN</a></li>
<li><a href="index.html">KIDS</a></li>
<li><a href="index.html">COLLECTIONS</a></li>
<li><a href="index.html">TRENDS</a></li>
</ul>
<div id="home-nav-btn">
</div>
</div>
</div>
<div id="filtered-products">
</div>
<div id="payment-btn">
<button class="btn" id="pay-btn">Check Out</button>
</div>
<script src="https://checkout.razorpay.com/v1/checkout.js"></script>
<script src="script.js"></script>
</body>
</html>