-
Notifications
You must be signed in to change notification settings - Fork 0
/
confirmation.html
93 lines (87 loc) · 2.33 KB
/
confirmation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order Confirmation - PARAM Medical Agency</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #4CAF50;
color: white;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #333;
}
nav a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
nav a:hover {
background-color: #ddd;
color: black;
}
.container {
padding: 20px;
}
.confirmation-message {
max-width: 600px;
margin: auto;
background-color: white;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
text-align: center;
padding: 20px;
border-radius: 5px⬤0.1;
}
.confirmation-message h2 {
color: #4CAF50;
}
.confirmation-message p {
margin-top: 10px;
color: #333;
}
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
position:-ms-page;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Param Medical Agency</h1>
</header>
<nav>
<a href="index.html#home">Home</a>
<a href="index.html#cart">Add to Cart</a>
<a href="index.html#wishlist">Wishlist</a>
<a href="index.html#profile">My Profile</a>
<a href="index.html#contact">Contact Us</a>
</nav>
<div class="container">
<div class="confirmation-message">
<h2>Order Successfully Placed</h2>
<p>Thank you for shopping with us!</p>
<p>Your order details will be sent to your email.</p>
</div>
</div>
<footer>
<p>© Created by SHASHI & ASHISH. All rights reserved.</p>
</footer>
</body>
</html>