-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorderSuccess.html
60 lines (59 loc) · 1.46 KB
/
orderSuccess.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
<!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>FAB BAG Order Placed</title>
<link rel="shortcut icon" href="//cdn.shopify.com/s/files/1/0052/7551/6995/files/LOGO_32x32.png?v=1548735766" type="image/png">
<style>
.thanku {
width: 230px;
height: 220px;
margin: auto;
color: black;
text-align: center;
font-size: 15px;
}
#orderPlaced {
width: 20%;
height: 200px;
margin: auto;
}
#orderPlaced > img {
width: 100%;
height: 100%;
}
a:link {
text-decoration: none;
}
a:visited {
color: black;
}
button{
width: 80%;
height: 50px;
font-weight: bold;
cursor: pointer;
}
</style>
</head>
<body>
<div id="orderPlaced">
<img
src="https://techctice.com/wp-content/uploads/2020/10/Checkmark.gif"
alt=""
/>
<div class="thanku">
<h1>Thank You</h1>
<h2>Your Order Placed !</h2>
<p>
Order No
<span style="color: red"> OD2131664684616546564TR </span>
</p>
<h4>Your Order will be delivered within 2-3 days</h4>
<button><a href="./index.html">Continue To Shopping</a></button>
</div>
</div>
</body>
</html>