-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfimation.html
81 lines (78 loc) · 2.07 KB
/
confimation.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
<!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>confirm page</title>
<style>
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
text-decoration: none;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
h1{
font-size: 50px;
text-align: center;
}
h2{
text-align: center;
font-size: 35px;
}
#confirm{
width: 350px;
height: 150px;
margin: auto;
margin-top: 20px;
text-align: center;
line-height: 25px;
font-size: 20px;
}
h3{
margin-top: 15px;
color: teal;
}
img{
width: 100px;
display: block;
margin: auto;
margin-bottom: 10px;
}
button{
display: block;
margin: auto;
text-align: center;
padding: 5px 25px;
font-size: 10px;
margin-top: 15px;
background-color: green;
border: 1px solid green;
color: #ffff;
cursor: pointer;
}
button:hover{
color: black;
font-weight: bold;
}
</style>
</head>
<body>
<div>
<img src="https://kohinoor.today/Kohinoor3/wp-content/uploads/2021/04/order-confirmed.png" alt="error">
<h2>Order Confirmed</h2>
<h1>Thank you for your purchase</h1>
<div id="confirm">
<p>your order is currently being processed. You will receive an confirmation email shortly.</p>
<h3>VIEW ORDERS</h3>
<a href="index.html"> <button>contine shopping</button></a>
</div>
</div>
</body>
</html>