-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess_contact.html
58 lines (58 loc) · 1.73 KB
/
success_contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Message Sent | Harsh's Portfolio</title>
<link rel="icon" type="image/png" href="favicon.webp">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: black;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
margin: 0 2rem;
border-radius: 1.5rem;
background-color: black;
padding: 30px;
box-shadow: 0 0 20px rgba(0, 255, 0, 0.6),
0 0 50px rgb(0, 255, 0, 0.4);
text-align: center;
}
h1 {
color: rgb(0, 255, 0);
font-size: 2rem;
}
p {
font-size: 1.2rem;
color: white;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: green;
color: white;
text-decoration: none;
border-radius: 0.4rem;
}
a:hover {
background-color: darkgreen;
}
</style>
</head>
<body>
<div class="container">
<h1>Message Sent Successfully!</h1>
<p>Thank you for getting in touch. I will respond to your message as soon as possible.</p>
<a href="index.html">Back to Home</a>
</div>
</body>
</html>