-
Notifications
You must be signed in to change notification settings - Fork 6
/
thankyou.html
65 lines (60 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You, Donor!</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f3f4f6;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.thank-you-container {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
text-align: center;
padding: 50px;
max-width: 600px;
width: 100%;
}
.thank-you-container h1 {
color: #007bff;
font-size: 36px;
margin-bottom: 25px;
font-weight: bold;
}
.thank-you-container p {
color: #333;
font-size: 18px;
margin-bottom: 30px;
line-height: 1.6;
}
.thank-you-container a {
display: inline-block;
background-color: #007bff;
color: #ffffff;
text-decoration: none;
padding: 12px 30px;
border-radius: 5px;
font-size: 16px;
transition: background-color 0.3s ease;
}
.thank-you-container a:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="thank-you-container">
<h1>Thank You for Donating!</h1>
<p>Your generous donation is greatly appreciated. We will notify you when your blood is needed. Your contribution can save lives.</p>
<a href="/">Return to Home</a>
</div>
</body>
</html>