-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSponser.html
104 lines (96 loc) · 3.26 KB
/
Sponser.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
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sponsor a Child's Education | Younger Minder</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 20px;
padding: 20px;
background-color: #f8f8f8;
color: #333;
}
header {
text-align: center;
padding: 20px;
background-color: #3498db;
color: #fff;
}
section {
margin-top: 20px;
}
h2 {
color: #3498db;
}
p {
line-height: 1.6;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
button {
background-color: #3498db;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #2980b9;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px;
background-color: #3498db;
color: #fff;
}
</style>
</head>
<body>
<header>
<h1>Sponsor a Child's Education</h1>
<p>Empower a Child for a Brighter Tomorrow</p>
</header>
<section>
<h2>Why Sponsorship Matters</h2>
<p>Sponsoring a child's education is a transformative experience that not only changes the life of the child but also contributes to building a better society. Your support provides:</p>
<ul>
<li>Access to quality education</li>
<li>Nutritional support</li>
<li>Healthcare services</li>
<li>Mentorship and guidance</li>
</ul>
</section>
<section>
<h2>How It Works</h2>
<p>Our sponsorship program is designed to make a meaningful and lasting impact on a child's life. Here's how it works:</p>
<ol>
<li>Choose a sponsorship plan that suits your preferences and budget.</li>
<li>Receive regular updates on the child's progress, including academic achievements and personal development.</li>
<li>Engage in correspondence with the sponsored child, fostering a meaningful connection.</li>
<li>Witness the direct impact of your support on the child's education journey.</li>
</ol>
</section>
<section>
<h2>Choose Your Sponsorship Plan</h2>
<p>Every sponsorship plan is a step towards transforming a child's life. Select a plan that aligns with your commitment to education and positive change.</p>
<button onclick="redirectSponsorshipPlans()">View Sponsorship Plans</button>
</section>
<footer>
<p>Contact us: [email protected] | Follow us on social media: @YoungerMinder</p>
</footer>
<script>
function redirectSponsorshipPlans() {
window.location.href = "sponsorship-plans.html"; // Replace with your sponsorship plans page URL
}
</script>
</body>
</html>