-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtax_receipts.html
27 lines (27 loc) · 1.02 KB
/
tax_receipts.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
<!-- tax_receipts.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tax Receipts</title>
<!-- Add any necessary CSS or external libraries -->
</head>
<body>
<div class="container">
<h1>Tax Receipts</h1>
<p>Donors may request tax receipts for their contributions, which can be used for tax deductions if applicable. To request a tax receipt or for further assistance, 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">Request Tax Receipt</button>
</form>
</div>
</body>
</html>