-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorders.html
executable file
·74 lines (69 loc) · 2.38 KB
/
orders.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
73
74
<!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>My Orders</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="cart.html" class="nav-link">Cart</a>
<a href="profile.html" class="nav-link">Profile</a>
</div>
</nav>
<section class="orders">
<h2>My Orders</h2>
<table class="order-table">
<thead>
<tr>
<th>Order Number</th>
<th>Product Name</th>
<th>Quantity</th>
<th>Price</th>
<th>Order Date</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>#12345</td>
<td>Product 1</td>
<td>2</td>
<td>₹39.98</td>
<td>October 10, 2024</td>
<td>Shipped</td>
</tr>
<tr>
<td>#12346</td>
<td>Product 2</td>
<td>1</td>
<td>₹29.99</td>
<td>October 11, 2024</td>
<td>Processing</td>
</tr>
<tr>
<td>#12347</td>
<td>Product 3</td>
<td>3</td>
<td>₹119.97</td>
<td>October 12, 2024</td>
<td>Delivered</td>
</tr>
</tbody>
</table>
</section>
</body>
</html>