Spaces:
Sleeping
Sleeping
File size: 1,413 Bytes
ec260dd 7826b55 ec260dd bddcee1 7826b55 bddcee1 7826b55 bddcee1 7826b55 9c9036a 7826b55 bddcee1 ec260dd 7826b55 ec260dd |
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 |
<!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 {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 50px auto;
text-align: center;
}
h1 {
color: #333;
}
.confirmation-message {
background-color: #fff;
padding: 30px;
margin: 20px 0;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.btn-home {
padding: 12px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
}
.btn-home:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<h1>Thank You for Your Order!</h1>
<div class="confirmation-message">
<p>Your order has been successfully placed. We will notify you when it's ready for delivery or pickup.</p>
</div>
<a href="/" class="btn-home">Go to Home</a>
</div>
</body>
</html>
|