-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththankyou.html
97 lines (84 loc) · 2.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You Page</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f9f9f9;
color: #555;
}
.thank-you-section {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.thank-you-content {
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.thank-you-content h1 {
font-size: 28px;
margin-bottom: 15px;
}
.thank-you-content p {
font-size: 18px;
margin-bottom: 20px;
}
.thank-you-content img {
max-width: 100%; /* Responsive image */
height: auto; /* Maintain aspect ratio */
margin-bottom: 20px;
}
.btn-custom {
margin: 10px;
border: 1px solid #ff4b88;
color: #ff4b88;
border-radius: 20px;
padding: 10px 20px;
}
.btn-custom:hover {
background-color: #ff4b88;
color: white;
}
.social-links a {
color: #555;
font-size: 20px;
margin: 0 10px;
transition: color 0.3s;
}
.social-links a:hover {
color: #ff4b88;
}
</style>
</head>
<body>
<div class="thank-you-section">
<div class="thank-you-content container">
<img class="img-fluid" src="/images/illustrations/thankyou.webp" alt="Thank You Robot">
<h1>Thank you for contacting us!</h1>
<p>We have received your message. We'll reach out to you immediately!</p>
<div>
<a href="index.html" class="btn btn-custom">Back to homepage</a>
<a href="images/SanthoshC_CV.pdf" class="btn btn-custom">View my Resume</a>
</div>
<div class="social-links mt-4">
<p>Let's connect!</p>
<a href="https://www.facebook.com/people/Santhosh-C/pfbid029QdLgCyakXrvp6mgaVYFZ2CTBFH4EdMbYFdvZuzyAePMnpzExC2QfoeZaVUTwaGQl/?mibextid=LQQJ4d"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/santhosh_chinraj"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/santh0sh-c/"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/ixmsanto"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</body>
</html>