-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.html
More file actions
67 lines (65 loc) · 1.72 KB
/
book.html
File metadata and controls
67 lines (65 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order Success</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #e6f4e6;
margin: 0;
padding: 0;
}
.container {
text-align: center;
margin-top: 100px;
}
.success-box {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
display: inline-block;
padding: 40px;
border: 2px solid #198754;
}
.success-icon {
font-size: 50px;
color: #198754;
margin-bottom: 20px;
}
h1 {
color: #198754;
font-size: 36px;
margin-bottom: 20px;
}
p {
color: #4d4d4d;
font-size: 18px;
margin-bottom: 30px;
}
.btn {
background-color: #198754;
color: white;
padding: 15px 30px;
text-decoration: none;
font-size: 16px;
border-radius: 5px;
border: none;
}
.btn:hover {
background-color: #198754;
}
</style>
</head>
<body>
<div class="container">
<div class="success-box">
<div class="success-icon">✔</div>
<h1>Order Placed Successfully!</h1>
<p>Thank you for your purchase. Your order has been placed and is being processed.</p>
<a href="./index.html" class="btn">Continue Shopping</a>
</div>
</div>
</body>
</