-
Notifications
You must be signed in to change notification settings - Fork 1
/
thank.html
64 lines (62 loc) · 1.42 KB
/
thank.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Thank You</title>
</head>
<style>
body{
margin: 0;
font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #27ae60;
}
div{
text-align: center;
padding: 2rem 1rem;
margin-bottom: 2rem;
background-color: #27ae60;
border-radius: .3rem;
margin-top: 25vh;
}
a{
padding: .25rem .5rem;
font-size: .875rem;
line-height: 1.5;
border-radius: .2rem;
color: #fff;
background-color: #151528;
display: inline-block;
font-weight: 400;
text-align: center;
text-decoration: none;
}
h1{
font-size: 4.5rem;
font-weight: 300;
line-height: 1.2;
}
.mesg{
margin: 1rem;
}
</style>
<body>
<div>
<h1>Thank You! For your order!</h1>
<p class="mesg">
<strong>We Know you are going to love it!</strong>
<!-- for further instructions on how to complete your account setup. -->
Your order will be placed soon.
</p>
<hr>
<p class="btns">
<a href="index.html" >Continue to homepage</a>
</p>
</div>
</body>
</html>