forked from rampatra/photography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailSent.html
57 lines (52 loc) · 1.31 KB
/
mailSent.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Email Sent Successfully</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #222;
color: #fff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background-color: #333;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
h1 {
color: #fff;
}
p {
color: #ccc;
margin-bottom: 20px;
}
.home-link {
text-decoration: none;
background-color: #4caf50;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s;
}
.home-link:hover {
background-color: #357a38;
}
</style>
</head>
<body>
<div class="container">
<h1>Email Sent Successfully!</h1>
<p>Thank you for contacting us. Your email has been sent successfully.</p>
<a href="index.html" class="home-link">Back to Home</a>
</div>
</body>
</html>