-
Notifications
You must be signed in to change notification settings - Fork 1
/
thanku.html
64 lines (59 loc) · 1.68 KB
/
thanku.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700;800&display=swap"
rel="stylesheet"
/>
<title>Thank-You</title>
<style>
body {
background-color: #333;
color: rgb(247, 182, 182);
font-family: "Poppins", sans-serif;
text-align: center;
align-items: center;
justify-content: center;
min-height: 100vh;
width: 100%;
position: relative;
background-image: linear-gradient(
rgba(4, 9, 30, 0.7),
rgba(4, 9, 30, 0.7)
),
url(images/banner.jpeg);
background-position: center;
background-size: cover;
overflow: hidden;
}
p {
padding: 10px;
margin-top: 100px;
font-size: 36px;
}
.foot {
font-size: 20px;
}
.foot a {
color: crimson;
text-decoration: none;
}
.msg {
color: #b6a1a1;
}
</style>
</head>
<body>
<p>Thank-You for submitting this form</p>
<p class="msg">I shall be contacting you soon, from your given details!</p>
<p class="foot">
If you want to go back where you left!
<a href="javascript:history.back()">Please Click here</a>
</p>
</body>
</html>