-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankyou.html
42 lines (42 loc) · 1.15 KB
/
thankyou.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
<!DOCTYPE html>
<html>
<head>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
text-align: center;
background-color: #1b1c1e;
}
h1{
font-family: sans-serif;
font-size: 30px;
font-weight: 600;
color: #d2d2d2;
padding-bottom: 20px;
}
p{
color: #d2d2d2;
}
a{
color: #828282;
font-style: italic;
}
a:hover{
color: #fff;
}
</style>
<title>Contact Us</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<h1>Thank you for reaching out. We will get back to you as soon as possible</h1>
<p class="back">Go back to the <a href="main.php">homepage</a></p>
</div>
</body>
</html>