-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththanks.html
54 lines (48 loc) · 2.37 KB
/
thanks.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
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111755796-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111755796-1');
</script>
<!-- END OF - Google Analytics -->
<meta name="viewport" content="width= device-width, initial-scale= 1.0">
<link rel="stylesheet" type="text/css" href="style/pages/home.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./script/websiteHandler.js"></script>
</head>
<style>
.hb__header__leftMenu { display: flex }
#mesage {
position: absolute;
left: 50%; top:50%;
transform: translate(-50%, -50%);
color: white;
}
</style>
<script>
window.setTimeout(function(){
// Move to a new location or you can do something else
window.location.href = "./index.html";
}, 5000);
</script>
<body class= "hb__body" style="background: #fd746c; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff9068, #fd746c); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff9068, #fd746c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
">
<div class= "container text-center" id="mesage">
<span class= "fa fa-envelope-open-o" style ="font-size:120px"></span>
<h1 class= "hb__basicText--h1">
we got your message and will back to you soon,<br> thank you for contacting us
</h1><br><br>
<p> you will be redirected to the home page in secondes</p><br>
<i class="fa fa-spinner fa-pulse fa-3x fa-fw"></i>
<span class="sr-only">Loading...</span>
</div>
</body>
</html>