-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththank-you.html
73 lines (71 loc) · 1.67 KB
/
thank-you.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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Your Mail Has Been Send Successfully.</title>
<!-- Latest Bootstrap min CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<style>
.welcome-area {
position: relative;
height: 600px;
background:#FFFAEE;
}
.hero-text{
margin-top:200px;
position:relative;
}
.hero-text h1 {
color: #2eca7f;
font-size: 60px;
font-weight: 500;
line-height: 70px;
margin-bottom:20px;
position: relative;
text-transform: capitalize;
}
.hero-text h3 {
margin-bottom: 60px;
font-weight: 600;
color:#232434;
}
.back-home{
background:none;
border: 2px solid #2eca7f ;
border-radius: 500px;
color: #2eca7f;
font-weight: 600;
position: relative;
margin: 15px 15px 0;
padding: 12px 36px;
text-transform: uppercase;
text-decoration: none;
transition: all 0.2s ease 0s;
}
.back-home:hover,
.back-home:focus {
background: #2eca7f;
color: #fff;
border: 2px solid #2eca7f ;
text-decoration: none;
}
</style>
</head>
<body>
<section class="welcome-area" style="background-image: url(assets/img/bg/1.jpg); background-size:cover; background-position: center center;">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2 col-sm-12 col-xs-12 text-center">
<div class="hero-text">
<h1>Thank you for your e-mail.</h1>
<h3>We Will contact you very soon.</h3>
<a class="back-home" href="index.html">Back To Home</a>
</div>
</div>
</div>
</div>
</section>
<!-- Latest compiled and minified Bootstrap -->
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>