-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
executable file
·72 lines (66 loc) · 2.4 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
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Bebas Neue' rel='stylesheet'>
<title>Shopping Cart</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav class="navbar">
<div class="logo"><a href="index.html" style="text-decoration: none;color:white;">
<p style="font-family: 'Bebas Neue';">Craftique</p>
</a></div>
<div class="nav-items">
<div class="category-list">
<a href="blog.html" class="category-item">Blog</a>
<a href="tutorial-vid.html" class="category-item">Tutorial</a>
</div>
<input type="text" class="search-bar" placeholder="Search...">
<a href="watchlist.html" class="nav-link">Watchlist</a>
<a href="orders.html" class="nav-link">Orders</a>
<a href="profile.html" class="nav-link">Profile</a>
</div>
</nav>
<section class="cart">
<h2>Your Cart</h2>
<table class="cart-table">
<thead>
<tr>
<th>Product</th>
<th>Quantity</th>
<th>Price</th>
<th>Total</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>Product 1</td>
<td>
<input type="number" value="2" class="quantity-input">
</td>
<td>₹19.99</td>
<td>₹39.98</td>
<td><button class="remove-button">Remove</button></td>
</tr>
<tr>
<td>Product 2</td>
<td>
<input type="number" value="1" class="quantity-input">
</td>
<td>₹29.99</td>
<td>₹29.99</td>
<td><button class="remove-button">Remove</button></td>
</tr>
</tbody>
</table>
<div class="cart-total">
<h3>Total: ₹69.97</h3>
<button class="checkout-button">Proceed to Checkout</button>
</div>
</section>
</body>
</html>