-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresources.html
154 lines (138 loc) · 6.08 KB
/
resources.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MOTHER TERESA HOME CARE</title>
<!-- Link to the style.css -->
<link rel="stylesheet" type="text/css" href="./styles/style.css">
<!-- Link to the favicon -->
<link rel="icon" href="./assets/favicon.png" type="image/png" sizes="32x32">
<!-- Link to add the Font Awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<!-- Link to add the boxicons -->
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
</head>
<body>
<header>
<a href="./index.html" class="logo">
<img src="./assets/logo (1).png" alt="">
<div class="text">
MTHC
</div>
</a>
<nav class="navbar">
<ul>
<li class="nav-item"><a href="./about.html">About</a></li>
<li class="nav-item"><a href="./services.html">Services</a></li>
<li class="nav-item"><a href="./volunteer.html">Volunteer</a></li>
<li class="nav-item"><a href="./resources.html" class="active">Resources</a></li>
</ul>
</nav>
<div class="contact">
<a href="./contact.html" class="active">
<i class="fa-solid fa-envelope"></i>
<div class="text">
Contact
</div>
</a>
</div>
<div class="menu-icon">
<i class="fa-solid fa-bars menu-icon-i"></i>
<!-- <i class="fa-solid fa-x"></i> -->
</div>
</header>
<main class="resources">
<!-- Resources Section -->
<div class="resources-section" id="resources">
<div class="header">
<div class="header-text">
Volunteer
</div>
<div class="header-line"></div>
</div>
<p class="p-top">Find helpful information and links to external resources relevant to elderly homeless individuals in
Nepal.</p>
<!-- Resource Cards -->
<div class="resource-cards">
<div class="card">
<img src="./assets/resources/givernment-assistance.jpg" alt="Government Assistance">
<h3>Government Assistance</h3>
<p>Learn about government programs and services available to support elderly homeless individuals in
Nepal.</p>
<a href="#" target="_blank">Learn More</a>
</div>
<div class="card">
<img src="./assets/resources/healthcare-facilities.jpg" alt="Healthcare Facilities">
<h3>Healthcare Facilities</h3>
<p>Find a list of healthcare facilities in Nepal that provide services to elderly homeless
individuals.</p>
<a href="#" target="_blank">Find a Facility</a>
</div>
<div class="card">
<img src="./assets/resources/legal-services.jpg" alt="Legal Services">
<h3>Legal Services</h3>
<p>Get access to legal services and resources that can help elderly homeless individuals in Nepal.
</p>
<a href="#" target="_blank">Learn More</a>
</div>
<div class="card">
<img src="./assets/resources/community-resources.jpg" alt="Community Resources">
<h3>Community Resources</h3>
<p>Discover community resources and organizations that provide support to elderly homeless
individuals in Nepal.</p>
<a href="#" target="_blank">Explore Resources</a>
</div>
</div>
<!-- Resource Links -->
<div class="useful-links">Useful Links</div>
<ul>
<li><a href="https://mohp.gov.np/en" target="_blank">Ministry of Health and Population, Nepal</a></li>
<li><a href="https://healthhomecarenepal.com.np/" target="_blank">Elderly Care Organizations in Nepal</a></li>
<li><a href="https://www.swc.org.np/" target="_blank">Nepal Government's Social Welfare Council</a></li>
</ul>
<!-- Call to Action -->
<div class="cta">
<h3>Get Involved</h3>
<p>Join us in making a difference in the lives of elderly homeless individuals in Nepal.</p>
<a href="#" class="btn">Volunteer Now</a>
</div>
</div>
</main>
<footer class="footer">
<div class="left">
© 2024 • MTHC • All Rights Reserved
</div>
<div class="right">
<div class="social">
<a href="https://www.facebook.com/ritoncharlox" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</div>
<div class="social">
<a href="https://www.instagram.com/ritoncharlox" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</div>
<div class="social">
<a href="https://www.linkedin.com/in/ritoncharlox" target="_blank"><i
class="fa-brands fa-linkedin"></i></a>
</div>
<div class="social">
<a href="https://twitter.com/ritoncharlox" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
</div>
</div>
</footer>
<div class="nav-touch-close" id="nav-tc-js"></div>
<script src="scripts/script.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js">
</script>
<script type="text/javascript">
(function () {
emailjs.init("mg50UONVh0u7USsVq");
})();
</script>
</body>
</html>