-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathour-partners.html
261 lines (217 loc) · 16.3 KB
/
our-partners.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link href="output.css" rel="stylesheet">
<title>Nivethan</title>
<link rel="icon" type="image/x-icon" href="public/img/Nivethan-icon.png" />
</head>
<body class="bg-gray-5100 font-sans leading-normal tracking-normal font-serif">
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
<div class="w-full text-gray-300 bg-white drop-shadow-md font-family-class">
<div x-data="{ open: false }"
class="p-2 flex flex-col max-w-screen-xl mx-auto md:items-center md:justify-between md:flex-row md:px-6 lg:px-8">
<div class="flex flex-row items-center justify-between">
<a href="index.html"><img
src="public/img/Nevthan -logo.webp"
alt="logo" class="h-full w-72"></a>
<button aria-label="hamberger-btn" class="md:hidden rounded-lg focus:outline-none focus:shadow-outline" @click="open = !open">
<svg fill="currentColor" viewBox="0 0 20 20" class="w-6 h-6 text-sky-700">
<path x-show="!open" fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z"
clip-rule="evenodd"></path>
<path x-show="open" fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
</div>
<nav :class="{'flex': open, 'hidden': !open}"
class="flex-col flex-grow pb-4 md:pb-0 hidden md:flex md:justify-end md:flex-row">
<a class="px-4 py-2 mt-2 text-base font-semibold text-black rounded-lg md:mt-0 hover:text-sky-600 hover:bg-gray-50 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="index.html">Home</a>
<div @click.away="open = false" class="relative" x-data="{ open: false }">
<button @click="open = !open"
class="text-black flex flex-row items-center w-full px-4 py-2 mt-2 text-base font-semibold text-left bg-transparent rounded-lg hover:bg-gray-50 hover:text-sky-600 md:w-auto md:inline md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline">
<span>About</span>
<svg fill="currentColor" viewBox="0 0 20 20" :class="{'rotate-180': open, 'rotate-0': !open}"
class="inline w-4 h-4 mt-1 ml-1 transition-transform duration-200 transform md:-mt-1">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
<div x-show="open" x-transition:enter="transition ease-out duration-100"
x-transition:enter-start="transform opacity-0 scale-95"
x-transition:enter-end="transform opacity-100 scale-100"
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="transform opacity-100 scale-100"
x-transition:leave-end="transform opacity-0 scale-95"
class="absolute right-0 w-full mt-2 origin-top-right rounded-md shadow-lg md:w-48">
<div class="px-2 py-2 bg-white rounded-md shadow text-black">
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="overview.html">Overview</a>
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="our-partners.html">Our Partners</a>
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="legal-info-financials.html">Legal Information & financial</a>
</div>
</div>
</div>
<!-- ***** -->
<div @click.away="open = false" class="relative" x-data="{ open: false }">
<button @click="open = !open"
class="text-black flex flex-row items-center w-full px-4 py-2 mt-2 text-base font-semibold text-left bg-transparent rounded-lg hover:text-sky-600 hover:bg-gray-50 md:w-auto md:inline md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline">
<span>Programs</span>
<svg fill="currentColor" viewBox="0 0 20 20" :class="{'rotate-180': open, 'rotate-0': !open}"
class="inline w-4 h-4 mt-1 ml-1 transition-transform duration-200 transform md:-mt-1">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
<div x-show="open" x-transition:enter="transition ease-out duration-100"
x-transition:enter-start="transform opacity-0 scale-95"
x-transition:enter-end="transform opacity-100 scale-100"
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="transform opacity-100 scale-100"
x-transition:leave-end="transform opacity-0 scale-95"
class="absolute right-0 w-full mt-2 origin-top-right rounded-md shadow-lg md:w-48">
<div class="px-2 py-2 bg-white rounded-md shadow text-black">
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="nurture-merit.html">Nurture Merit</a>
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="mission-thalassemia.html">Mission Thalassemia</a>
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="economic-development-initiatives.html">Economic Development Initiatives</a>
</div>
</div>
</div>
<!-- **** -->
<a class="text-black px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 hover:bg-gray-50 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="blog.html">Blog</a>
<a class="text-black px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 hover:bg-gray-50 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="donate.html">Donate</a>
<a class="text-black px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 hover:bg-gray-50 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="contact.html">Contact Us</a>
</nav>
</div>
</div>
<!-- *** header end **** -->
<!-- Main body start -->
<section class="">
<div class="px-6 lg:py-12 bg-gray-50 text-gray-800 text-center lg:text-left">
<!-- <div class="px-6 py-20 md:px-2 bg-gray-50 text-gray-800 text-center lg:text-left"> -->
<div class="container mx-auto xl:px-32 ">
<div class="grid lg:grid-cols-2 lg:gap-6 flex items-center justify-center">
<div class="mb-12 lg:mb-0 sm:place-self-center">
<img src="public/img/our-partners-1.webp" class="h-full w-full rounded-lg drop-shadow-2xl"
alt="logo" />
</div>
<div class="mt-12 lg:mt-0">
<h1
class="lg:text-3xl text-lg font-semibold text-color capitalize lg:text-4xl p-2 text-center">
NIVETHAN TRUST
</h1>
<p class="text-orange-600 text-center">NON PROFIT</p>
<div class="max-w-2xl font-light text-sky-600 font-thin lg:text-lg text:sm ">
<ul class="lg:p-4 font-family-class ">
<li class="p-2"><a href="https://www.cure2children.org/" class="hover:text-orange-400 lg:text-xl hover:underline text-start"> ● Cure2Children Foundation, Italy</a></li>
<li class="p-2"><a href="https://www.sankalpindia.net/" class="hover:text-orange-400 lg:text-xl hover:underline text-start"> ● Sankalp India Foundation, Bangalore</a></li>
<li class="p-2"><a href="" class="hover:text-orange-400 lg:text-xl hover:underline text-start"> ● Rajaji Government Hospital, Madurai</a></li>
<li class="p-2"><a href="" class="hover:text-orange-400 lg:text-xl hover:underline text-start"> ● Serve The Needy, Hyderabad</a></li>
<li class="p-2"><a href="http://sakhitrust.org/" class="hover:text-orange-400 lg:text-xl hover:underline text-start"> ● Sakhi Trust, Hospet, Karnataka</a></li>
<li class="p-2"><a href="https://www.sshdgl.org/" class="hover:text-orange-400 lg:text-xl hover:underline text-start"> ● Society for Serving Humanity, Dindigul, Tamil Nadu </a></li>
</ul>
</div>
<div class="p-2">
<a href="donate.html"
class="font-family-class inline-flex items-center justify-center px-12 py-3 text-lg font-medium text-center bg-orange-500 text-white border border-gray-300 rounded-3xl hover:bg-sky-500">
Donate
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Main body end -->
<!-- footer -->
<footer class="bg-gray-100 p-4" aria-labelledby="footer-heading">
<h2 id="footer-heading" class="sr-only">Footer</h2>
<div class="mx-auto max-w-7xl px-6 pb-4 sm:pt-24 lg:px-8 pt-2 lg:pt-12">
<div class="">
<div class="flex flex-col lg:flex-row justify-center lg:gap-20">
<!-- 1111 -->
<div class="mt-2 xl:mt-0 max-w-xl">
<h3 class="text-lg font-semibold leading-6 text-color">Donate Now to Nivethan Trust</h3>
<p class="mt-2 text-baseleading-6 text-black font-family-class">Support various programs of
Nivethan by
donating. All your donations to Nivethan Trust are exempted under 80 (G) of Income Tax
Act. <a href="donate.html" class="text-orange-600 hover:text-sky-600 hover:underline">Donate
online.</a></p>
</div>
<!-- 22222 -->
<div class="mt-2 xl:mt-0">
<h3 class="text-lg font-semibold leading-6 text-color">Contact Us</h3>
<p class="mt-2 text-baseleading-6 text-black font-family-class"> Nivethan Trust</p>
<p class="mt-2 text-baseleading-6 text-black font-family-class">Madurai, Tamil Nadu, India</p>
<p class="mt-2 text-baseleading-6 text-black font-family-class"> +91-97881-66903</p>
<p class="mt-2 text-baseleading-6 text-black font-family-class"> [email protected] ;
</div>
</div>
</div>
<div
class="mt-16 border-t border-black/20 pt-8 sm:mt-20 md:flex md:items-center md:justify-between lg:mt-8">
<div class="flex space-x-6 md:order-2">
<a href="https://www.facebook.com/nivethanmadurai/ " class="text-gray-900 hover:text-sky-600">
<span class="sr-only">Facebook</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"
clip-rule="evenodd" />
</svg>
</a>
<a href="https://twitter.com/nivethantrust " class="text-gray-900 hover:text-sky-600">
<span class="sr-only">Twitter</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path
d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
</svg>
</a>
<a href="https://www.youtube.com/user/NivethanTrust" class="text-gray-900 hover:text-sky-600">
<span class="sr-only">YouTube</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M19.812 5.418c.861.23 1.538.907 1.768 1.768C21.998 8.746 22 12 22 12s0 3.255-.418 4.814a2.504 2.504 0 0 1-1.768 1.768c-1.56.419-7.814.419-7.814.419s-6.255 0-7.814-.419a2.505 2.505 0 0 1-1.768-1.768C2 15.255 2 12 2 12s0-3.255.417-4.814a2.507 2.507 0 0 1 1.768-1.768C5.744 5 11.998 5 11.998 5s6.255 0 7.814.418ZM15.194 12 10 15V9l5.194 3Z"
clip-rule="evenodd" />
</svg>
</a>
</div>
<div>
<p class="mt-8 mb-2 text-base leading-5 text-black md:order-1 md:mt-0 font-family-class">©
Copyright
[Nivethan Trust]
- All rights reserved.</p>
<p class="mt-12 text-sm leading-5 md:order-1 md:mt-0 text-black font-family-class">
Built with ❤️ by
<a href="https://oasishq.org/" target="_blank"
class="li-text-color hover:text-orange-600 hover:underline">OASIS</a> partner
<a href="https://aikyamfellows.org/" target="_blank"
class="li-text-color hover:text-orange-600 hover:underline"> aikyam fellows </a>
using
<a href="https://github.com/t4glabs/nivethan"
class="li-text-color hover:text-orange-600 hover:underline">Github Pages</a>
</a>
</p>
</div>
</div>
</div>
</footer>
<!-- </footer> -->
<script src="index.js"></script>
</body>
</html>