"thank you page"
Bootstrap 4.1.1 Snippet by cengizgoren

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Thank you page</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class=content>
<div class="wrapper-1">
<div class="wrapper-2">
<h1>Thank you !</h1>
<h4>Awesome! Your registration is complete.</h4>
<p>While our Customer Success team will reach out to you over email, please whitelist our email domain @hitgoalz.com so that you do not miss out on important future correspondence.</p>
<button class="go-home">
go home
</button>
</div>
<div class="footer-like">
<p>Email not received?
<a href="#">Click here to send again</a>
</p>
</div>
</div>
</div>
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script|Source+Sans+Pro" rel="stylesheet">
<!-- partial -->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
*{
box-sizing:border-box;
/* outline:1px solid ;*/
}
body{
background: #ffffff;
background: linear-gradient(to bottom, #ffffff 0%,#e1e8ed 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e1e8ed',GradientType=0 );
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
.wrapper-1{
width:100%;
height:100vh;
display: flex;
flex-direction: column;
}
.wrapper-2{
padding :30px;
text-align:center;
}
h1{
font-family: 'Kaushan Script', cursive;
font-size:4em;
letter-spacing:3px;
color:#5892FF ;
color: #44ca91;
margin:0;
margin-bottom:20px;
}
.wrapper-2 h4 {
margin: 0;
font-size: 1.3em;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: