-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorderz.html
95 lines (85 loc) · 2.02 KB
/
orderz.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Orders</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fff
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
}
h1 {
margin-top: 0;
color: #333;
}
.order {
display: flex;
margin-bottom: 20px;
border: 1px solid #fff;
overflow: hidden;
}
.order img {
width: 150px;
height: 150px;
object-fit: cover;
}
.order-details {
padding: 20px;
}
.order-details h2 {
margin-top: 0;
margin-bottom: 10px;
color: #333;
}
.order-details p {
margin: 0;
margin-bottom: 5px;
color: #666;
}
.reorder-btn {
display: inline-block;
padding: 5px 10px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.reorder-btn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>My Orders</h1>
<div class="order">
<img src="https://tse3.mm.bing.net/th?id=OIP.pWLz7mvC_jbYRoWFV3F3UAHaE8&pid=Api&P=0&h=180" alt="Order Image">
<div class="order-details">
<h2>Order #001</h2>
<p>Date: January 1, 2024</p>
<p>Total Price: ₹50</p>
<a href="#" class="reorder-btn">Re-order</a>
</div>
</div>
<div class="order">
<img src="https://d2gg9evh47fn9z.cloudfront.net/800px_COLOURBOX2910489.jpg" alt="Order Image">
<div class="order-details">
<h2>Order #002</h2>
<p>Date: January 5, 2024</p>
<p>Total Price: ₹30</p>
<a href="#" class="reorder-btn">Re-order</a>
</div>
</div>
</div>
</body>
</html>