-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththankyou.html
46 lines (37 loc) · 1.09 KB
/
thankyou.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order placed</title>
<style>
.contener {
margin-top: 200px;
}
h1 {
color: #82c815;
}
h2 {
color: rgb(45, 163, 163);
}
h3 {
text-decoration: underline;
cursor: pointer;
color: blue;
}
</style>
</head>
<body>
<div class="contener">
<center>
<img width="200px" height="200px"
src="https://w7.pngwing.com/pngs/264/251/png-transparent-check-mark-checkbox-computer-icons-resort-green-tick-icon-check-illustration-miscellaneous-angle-leaf.png"
alt="">
<h1>Thank You For Shopping with us!</h1>
<h2>Your Order has been Placed</h2>
<h3><a onclick="window.location.href='./HomePage/index1.html'">Click here to Home page</a></h3>
</center>
</div>
</body>
</html>