-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.html
105 lines (101 loc) · 3.06 KB
/
order.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
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order Confirmation</title>
<style>
body {
background-color: #808000;
font-family: Arial, sans-serif;
color: white;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 30px;
background-color: white;
color: #333;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
color: #ff9900;
font-size: 36px;
}
h2 {
color: green;
font-size: 28px;
}
p {
font-size: 18px;
line-height: 1.6;
}
.summary {
margin-top: 20px;
text-align: left;
background-color: #f9f9f9;
padding: 15px;
border-radius: 5px;
}
.summary p {
margin: 8px 0;
font-size: 16px;
}
.thank-you {
font-size: 24px;
font-weight: bold;
margin-top: 30px;
}
.footer {
margin-top: 40px;
font-size: 14px;
text-align: center;
background-color: #333;
padding: 20px;
color: #ccc;
border-top: 1px solid #444;
}
.footer p {
margin: 8px 0;
}
.footer a {
color: #ff9900;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<a class="a" href="home.html"> Home</a>
<div class="container">
<h1>E-Book Store</h1>
<h2>Your Order is Confirmed!</h2>
<p>Dear Customer,</p>
<p>Thank you for shopping with us. Your order has been successfully placed and will be processed shortly. We will send you an update once your items have been shipped.</p>
<div class="summary">
<h3>Order Summary</h3>
<p><strong>Order Number:</strong> #1234567890</p>
<p><strong>Order Date:</strong> September 14, 2024</p>
<p><strong>Items:</strong> 3 (including electronics and clothing)</p>
<p><strong>Total Amount:</strong> $150.00</p>
</div>
<p class="thank-you">Thank You for Your Purchase!</p>
</div>
<div class="footer">
<p>Need help with your order? <a href="#">Contact Us</a></p>
<p>Follow us on:
<a href="#">Facebook</a> |
<a href="#">Twitter</a> |
<a href="#">Instagram</a>
</p>
<p>© 2024 E-BookStore. All rights reserved.</p>
<p><a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a></p>
</div>
</body>
</html>