-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththank-you.html
More file actions
54 lines (49 loc) · 1.05 KB
/
Copy paththank-you.html
File metadata and controls
54 lines (49 loc) · 1.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Thank You – Huffle IT Services</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #fdf6f0;
color: #3b2f2f;
text-align: center;
padding: 50px;
}
h1 {
color: #a65c2e;
font-size: 32px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 30px;
}
img {
width: 120px;
border-radius: 8px;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
border: 1px solid #ccc;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #e5621e;
color: white;
text-decoration: none;
border-radius: 4px;
}
a:hover {
background-color: #c94f1a;
}
</style>
</head>
<body>
<img src="Logo.png" alt="Huffle Logo">
<h1>Thank You!</h1>
<p>Your intake form has been received. We’ll review it and reach out soon with next steps.</p>
<a href="index.html">Return to Home</a>
</body>
</html>