Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 96 additions & 0 deletions faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Blood Donation App</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
padding: 20px;
background-color: #f9f9f9;
}
h1 {
color: #b30000;
}
.faq-item {
margin-bottom: 20px;
padding: 10px;
border-left: 4px solid #b30000;
background-color: #fff;
box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.question {
font-weight: bold;
color: #333;
}
.answer {
margin-top: 5px;
color: #555;
}
.back-link {
margin-top: 40px;
}
</style>
</head>
<body>

<h1>Frequently Asked Questions</h1>

<div class="faq-item">
<div class="question">1. Who can donate blood?</div>
<div class="answer">Generally, healthy individuals between 18 and 65 years of age, weighing at least 50kg, can donate blood.</div>
</div>

<div class="faq-item">
<div class="question">2. How often can I donate blood?</div>
<div class="answer">You can donate whole blood every 8 weeks (56 days). Plasma and platelet donation intervals may vary.</div>
</div>

<div class="faq-item">
<div class="question">3. Is blood donation safe?</div>
<div class="answer">Yes. All equipment used is sterile and for one-time use only, ensuring complete safety for donors.</div>
</div>

<div class="faq-item">
<div class="question">4. How long does the donation process take?</div>
<div class="answer">The entire process takes about 45 minutes to 1 hour, while the actual donation takes around 10 minutes.</div>
</div>

<div class="faq-item">
<div class="question">5. What should I do before donating blood?</div>
<div class="answer">Eat a healthy meal, drink plenty of water, and avoid alcohol or strenuous exercise before donating.</div>
</div>

<div class="faq-item">
<div class="question">6. Can I donate blood if I have a tattoo or piercing?</div>
<div class="answer">Yes, but only if it was done more than 6 months ago in a licensed facility using sterile equipment.</div>
</div>

<div class="faq-item">
<div class="question">7. Will I feel weak after donating?</div>
<div class="answer">Some donors may feel lightheaded, but most feel fine. Rest, hydration, and a snack help you recover quickly.</div>
</div>

<div class="faq-item">
<div class="question">8. What happens to my donated blood?</div>
<div class="answer">Your blood is tested, processed, and stored. It can save lives by being used in surgeries, emergencies, and for patients with conditions like anemia or cancer.</div>
</div>

<div class="faq-item">
<div class="question">9. Can I donate if I take medication?</div>
<div class="answer">It depends on the medication. Always inform the staff about any medications you are taking.</div>
</div>

<div class="faq-item">
<div class="question">10. How do I know if I'm eligible to donate?</div>
<div class="answer">Eligibility is determined through a brief health screening and questionnaire at the donation center.</div>
</div>

<div class="back-link">
<p><a href="homepage.html">← Back to Homepage</a></p>
</div>

</body>
</html>
Loading