-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransparency_and_accountability.html
33 lines (33 loc) · 1.4 KB
/
transparency_and_accountability.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
<!-- transparency_and_accountability.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transparency and Accountability</title>
<!-- Add any necessary CSS or external libraries -->
</head>
<body>
<div class="container">
<h1>Transparency and Accountability</h1>
<p>We are committed to transparency and accountability in our financial management. Donors can access detailed reports and information on how donated funds are utilized:</p>
<ul>
<li><a href="financial_reports.pdf" target="_blank">Financial Reports</a></li>
<li><a href="impact_assessment.pdf" target="_blank">Impact Assessment</a></li>
<!-- Add more links or resources as needed -->
</ul>
<p>For any inquiries or further information, please contact us:</p>
<form action="#" method="post">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<button type="submit">Contact Us</button>
</form>
</div>
</body>
</html>