-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
94 lines (81 loc) · 3.07 KB
/
cart.html
File metadata and controls
94 lines (81 loc) · 3.07 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
<!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="cart.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<title>Cart items</title>
</head>
<body>
<!-- header section -->
<!-- header section -->
<header class="header">
<input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<a href="#home" class="logo">FLOWER<span style="color: red;">.</span></a>
<nav class="navbar">
<a href="home.html">Home</a>
<a href="home.html#about">About</a>
<a href="#product">Shop</a>
<a href="home.html#product">Product</a>
<a href="#contact">Contact</a>
</nav>
<div class="icons">
<a href="wishlist.html" class="fas fa-heart"></a>
<a href="cart.html" class="fas fa-shopping-cart"></a>
<a href="Login.html" class="fas fa-user"></a>
</div>
</header>
<!-- header section ends -->
<!-- header section ends -->
<!-- Cart items started -->
<div class="head" id="head">
<h1><span style="color: palevioletred;">My</span> Cart</h1>
</div>
<main>
<div class="cart-container" id="cart-container">
</div>
<div class="cart-summary">
<h2>Total: $<span id="grand-total">0.00</span></h2>
<div class="cart-actions">
<a href="shop.html" id="button">← Continue Shopping</a>
<button id="checkout-button">Checkout</button>
</div>
</div>
</main>
<script src="cart.js"></script>
<!-- Cart items ended -->
<!-- footer section starts -->
<section class="footer" id="contact">
<div class="box-container">
<div class="box">
<h3>Quick links</h3>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#product">Product</a>
<a href="#contact">Contact</a>
</div>
<div class="box">
<h3>Extra links</h3>
<a href="Login.html">My Accounts</a>
<a href="#my_order">My Orders</a>
<a href="#wishlist-header">My Favorites</a>
</div>
<div class="box">
<h3>Contact Info</h3>
<ul>
<a href="number">+91 208098908</a>
<a href="email">Flower_web@gmail.com</a>
<a href="https://www.google.com/maps?q=Coimbatore,+Tamil+Nadu" target="_blank">Coimbatore, Tamil
Nadu</a>
</ul>
</div>
</div>
<div class="credit">
© Created by <span style="color:red">Dishitha</span> All Right Reserved.
</div>
</section>
<!-- footer section ends -->
</body>
</html>