-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
167 lines (157 loc) · 6.19 KB
/
services.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Char-E-T - Our services</title>
<link rel="shortcut icon" href="./Media/favicon.ico" type="image/svg+xml" />
<!-- Main css for header and footer and colors -->
<link rel="stylesheet" href="./CSS/style.css" />
<link rel="stylesheet" href="./CSS/services.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
</head>
<body>
<!--The header -->
<our-header></our-header>
<main>
<div class="page-header">
<h1>Our Healthcare Services</h1>
<p>
Supporting the community with essential medical care and assistance
</p>
</div>
<div class="cards-container">
<div class="card">
<div class="card-image">
<img src="./Media/Services/1.jpeg" alt="Monthly Treatment" />
</div>
<div class="card-content">
<h2>Monthly Treatment Service</h2>
<p>
Providing ongoing medical treatment for chronic conditions,
including regular check-ups, medication management, and
specialized care plans. Our monthly treatment service ensures
continuous care for those who need it most.
</p>
<p class="service-cost">Monthly Donation: $250</p>
<div class="card-actions">
<a href="donate-main.html">
<button class="btn donate-btn">Support This Service</button>
</a>
<button class="btn volunteer-btn">Learn More</button>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="./Media/Services/2.jpeg" alt="Medical Examination" />
</div>
<div class="card-content">
<h2>Medical Examination & Tests</h2>
<p>
Comprehensive medical examinations including blood work,
diagnostic imaging, and specialized tests. Early detection and
prevention are key to maintaining good health in our community.
</p>
<p class="service-cost">Per Examination: $150</p>
<div class="card-actions">
<a href="donate-main.html">
<button class="btn donate-btn">Support This Service</button>
</a>
<button class="btn volunteer-btn">Learn More</button>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="./Media/Services/3.jpeg" alt="Surgical Operations" />
</div>
<div class="card-content">
<h2>Surgical Operations</h2>
<p>
Supporting essential surgical procedures for those who cannot
afford them. Our network of volunteer surgeons and medical
facilities helps provide life-changing operations to those in
need.
</p>
<p class="service-cost">Average Cost: $5,000</p>
<div class="card-actions">
<a href="donate-main.html">
<button class="btn donate-btn">Support This Service</button>
</a>
<button class="btn volunteer-btn">Learn More</button>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="./Media/Services/4.jpeg" alt="Patient Debt Relief" />
</div>
<div class="card-content">
<h2>Payment of Patients' Debts</h2>
<p>
Helping patients overcome medical debt through our financial
assistance program. We work with healthcare providers to negotiate
and settle outstanding medical bills for qualifying individuals.
</p>
<p class="service-cost">Average Assistance: $2,000</p>
<div class="card-actions">
<a href="donate-main.html">
<button class="btn donate-btn">Support This Service</button>
</a>
<button class="btn volunteer-btn">Learn More</button>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="./Media/Services/5.jpeg" alt="Medical Supplies" />
</div>
<div class="card-content">
<h2>Medical Supplies</h2>
<p>
Providing essential medical supplies including medications,
mobility aids, and medical equipment to those in need. Our program
ensures patients have access to the supplies they need for
recovery and ongoing care.
</p>
<p class="service-cost">Monthly Supply Kit: $100</p>
<div class="card-actions">
<a href="donate-main.html">
<button class="btn donate-btn">Support This Service</button>
</a>
<button class="btn volunteer-btn">Learn More</button>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<img src="./Media/Services/6.jpeg" alt="Family Sponsorship" />
</div>
<div class="card-content">
<h2>Family Sponsorship Program</h2>
<p>
Supporting families affected by medical crises through
comprehensive assistance including housing support, food
assistance, and educational resources for children during
treatment periods.
</p>
<p class="service-cost">Monthly Sponsorship: $500</p>
<div class="card-actions">
<a href="donate-main.html">
<button class="btn donate-btn">Support This Service</button>
</a>
<button class="btn volunteer-btn">Learn More</button>
</div>
</div>
</div>
</div>
</main>
<!-- The footer -->
<our-footer></our-footer>
<!-- main js file for footer and header -->
<script src="./JS/main.js"></script>
</body>
</html>