-
Notifications
You must be signed in to change notification settings - Fork 0
/
donation-advisory.html
90 lines (80 loc) · 2.41 KB
/
donation-advisory.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donation Advisory</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
overflow-x: hidden;
}
.container {
padding: 2em;
max-width: 800px;
margin: auto;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}
h2 {
color: #007BFF; /* Blue color for the heading */
font-size: 2em;
text-align: center;
margin-bottom: 1em;
opacity: 0;
animation: fadeIn 1s forwards;
}
p, ul {
opacity: 0;
animation: fadeInUp 1s forwards;
}
ul {
list-style-type: disc;
margin-left: 1.5em;
color: #333; /* Darker color for the list items */
}
.container::before {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 150%;
height: 150%;
background: radial-gradient(circle, rgba(0,123,255,0.1) 20%, rgba(0,123,255,0) 60%); /* Blue gradient background */
transform: translate(-50%, -50%);
animation: float 6s infinite ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
from { transform: translate(-50%, -50%) translateY(0); }
to { transform: translate(-50%, -50%) translateY(-20px); }
}
</style>
</head>
<body>
<div class="container">
<h2>Donation Advisory</h2>
<p>Your generous contributions are crucial in helping those in need. Here’s how you can make a difference:</p>
<ul>
<li>Donate through our secure online portal</li>
<li>Send a check to our mailing address</li>
<li>Organize a fundraising event to support our efforts</li>
</ul>
<p>Every rupee you contribute goes directly to providing essential supplies and support. Thank you for your generosity and commitment to making a positive impact.</p>
</div>
</body>
</html>