-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
483 lines (471 loc) · 17 KB
/
index.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sintang Pusa</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:[email protected]&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="./assets/pupsp-logo.png" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<!-- Navigation Bar -->
<header class="navbar">
<div>
<div class="logo">
<a href="#">
<img
class="logo-image"
src="assets/pupsp-logo.png"
alt="pup-sintang-pusa-logo"
/>
<span class="logo-text">Sintang Pusa</span>
</a>
</div>
<nav class="main-nav">
<ul class="nav-links">
<li><a href="#hero">Home</a></li>
<li><a href="#story">Story</a></li>
<li><a href="#goals">Goals</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#officers">Officers</a></li>
<li><a href="#join-us">Contact</a></li>
</ul>
</nav>
<div class="nav-cta-button">
<a
href="https://www.facebook.com/PUPSintangPusa"
class="cta-button-yellow"
target="_blank"
>
Join Our Mission
</a>
</div>
</div>
</header>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section id="hero">
<div>
<div class="hero-content">
<h1 class="hero-title">For the Cats of PUP, We Serve</h1>
<p class="hero-description">
Born from compassion, driven by action-protecting and caring for
the feline souls of PUP Sta. Mesa.
</p>
<div class="hero-cta">
<a
href="https://www.facebook.com/PUPSintangPusa"
class="cta-button"
>
Join Our Mission
</a>
</div>
</div>
<figure class="hero-figure">
<img
class="cat-image"
src="assets/sleeping-pogi.png"
alt="sleeping-pogi-with-name-tag"
/>
</figure>
</div>
</section>
<!-- Story Section -->
<section id="story" class="white-grid">
<div>
<h1 class="story-title">Our Story: A Movement<br />Born from Love</h1>
<p class="story-text">
Sintang Pusa began in 2019 as a Facebook page celebrating the cats
of PUP Sta. Mesa. Inspired by the memory of Pogi, a beloved tabby
whose tragic loss united students, faculty, and alumni, we've grown
into a movement dedicated to protecting and caring for our campus
cats through love, awareness, and charitable efforts.
</p>
<a
href="https://www.facebook.com/share/p/12KpAJNpYbh/"
class="read-more-button"
target="_blank"
>
Read More Stories
<i class="bx bx-right-arrow-alt"></i>
</a>
</div>
</section>
<!-- Goals Section -->
<section id="goals">
<div>
<div class="goals-header">
<h1>
Our Goals: Creating a Better <br />
Future for PUP's Cats
</h1>
</div>
<div class="goals-items white-grid">
<div class="goals-item">
<img src="./assets/goals1.png" class="goals-photo" />
<h4>Awareness</h4>
<p>Advertise and raise awareness about the cats in PUP.</p>
</div>
<div class="goals-item">
<img src="./assets/goals2.png" class="goals-photo" />
<h4>Feeding</h4>
<p>Feed the cats residing within the campus.</p>
</div>
<div class="goals-item">
<img src="./assets/goals3.png" class="goals-photo" />
<h4>Monitoring</h4>
<p>
Regularly monitor resident cats to ensure their health and
safety.
</p>
</div>
<div class="goals-item">
<img src="./assets/goals4.png" class="goals-photo" />
<h4>Support</h4>
<p>
Manage donations and raise funds to sustain the cats' needs and
organizational operations.
</p>
</div>
<div class="goals-item">
<img src="./assets/goals5.png" class="goals-photo" />
<h4>Volunteers</h4>
<p>
Gather volunteers to easily mobilize the purpose of the
organization
</p>
</div>
<div class="goals-item">
<img src="./assets/goals6.png" class="goals-photo" />
<h4>Networking</h4>
<p>
Reach out to the community to form networks that will benefit
the cats.
</p>
</div>
</div>
</div>
</section>
<!-- Events Section -->
<section id="events" class="white-grid">
<div>
<div class="events-header">
<h1>
Paws and Plan: Check Out <br />
Our Upcoming Events!
</h1>
<p>
From donation drives to volunteer opportunities,<br />
there's always a way to help PUP's feline friends.
</p>
<img src="./assets/paws1.png" class="paws-right" />
</div>
<div class="events-table">
<table>
<tr>
<th>Event Name</th>
<th>Date</th>
<th>Location</th>
<th>Description</th>
</tr>
<tr>
<td>
<span class="event-name"
>Feed the Need: March Donation Drive</span
>
<a
href="https://www.facebook.com/share/p/19K8cdqypi/"
class="event-button"
target="_blank"
>Join Event</a
>
</td>
<td>March 2025</td>
<td>PUP Main, Facebook (virtual)</td>
<td>
A dedicated cat food donation initiative aimed at gathering
essential supplies for community cats in need. Any amount is
appreciated as it can help provide meals, medical care, and
shelter for countless hungry cats, especially during this
summer season.
</td>
</tr>
<tr>
<td>
<span class="event-name"
>PUPSP Cat Festival: Hayop Magmahal</span
>
<a
href="https://www.facebook.com/share/p/18Ke6jEupD/"
class="event-button"
target="_blank"
>Join Event</a
>
</td>
<td>February 18-22, 2025</td>
<td>PUP Main, Facebook (virtual)</td>
<td>
A series of events for beloved campus cats in celebration of
National Cat Health Month and promototing Responsible Pet
Ownership.
</td>
</tr>
<tr>
<td>
<span class="event-name">Safety Awareness Campaign</span>
<a
href="https://www.facebook.com/share/p/18wP5XdTyX/"
class="event-button"
target="_blank"
>Join Event</a
>
</td>
<td>February 12-14, 2025</td>
<td>PUP Main, CEA, COC, ITech</td>
<td>
An activity inspired by DLSU PUSA where warning signs and
posters were posted around the campus following the
heartbreaking vehicular indicent that claimed the life of one
of our beloved campus cats.
</td>
</tr>
<tr>
<td>
<span class="event-name">FelineIDentity</span>
<a
href="https://www.facebook.com/share/p/16CJucLjQc/"
class="event-button"
target="_blank"
>Join Event</a
>
</td>
<td>November 2024 - December 2024</td>
<td>PUP Main, CEA, COC, ITech</td>
<td>
Cat checking feeding, and collaring activity where the campus
cats got their stylish ID collars that will help track the
cats' health, safety, and movements across campus, ensuring
they're recognized and protected members of the PUP community.
Each cat's profile will be carefully documented, offering
greater ease in connecting with potential adopters. This
activity was paired with a hearty feeding session to show them
some extra love and was conducted in CEA, COC, iTech, and PUP
Main.
</td>
</tr>
<tr>
<td>
<span class="event-name">Feed the Need</span>
<a
href="https://www.facebook.com/share/p/1APYZwunzZ/"
class="event-button"
target="_blank"
>Join Event</a
>
</td>
<td>
November 2024, December 2024, January 2025, February 2025
</td>
<td>PUP Main, Facebook (virtual)</td>
<td>
A dedicated cat food donation initiative aimed at gathering
essential supplies for community cats in need.
</td>
</tr>
<tr>
<td>
<span class="event-name"
>Orientation and General Assembly</span
>
<a
href="https://www.facebook.com/share/p/1ASkc7JPNf/"
class="event-button"
target="_blank"
>Join Event</a
>
</td>
<td>October 20, 2024</td>
<td>Zoom, Facebook Live</td>
<td>
The usual orientation and general assembly for organizations.
In this context, PUP Sintang Pusa is committed to raising
awareness and protecting campus cats which was the central
point of their orientation, that was done online in Zoom and
FB Live.
</td>
</tr>
</table>
</div>
<div class="organization-ribbon">
<span>Youth For Animals - PUP Main</span>
<span class="ribbon-dot"></span>
<span>PNU Paws</span>
<span class="ribbon-dot"></span>
<span>DLSU PUSA</span>
<span class="ribbon-dot"></span>
<span>DLSUD Patriots of Animal Welfare & Support</span>
<span class="ribbon-dot"></span>
</div>
</div>
</section>
<!-- Officers Section -->
<section id="officers" class="white-grid">
<div>
<div class="officers-header">
<h1>Meet Our Dedicated Team:<br />The Heart of Sintang Pusa</h1>
<p>
These leaders drive our mission to protect and<br />care for the
cats of PUP Sta. Mesa.
</p>
</div>
<div class="officers-list">
<div class="officer-box-yellow">
<img src="./assets/paws2.png" class="officer-paws" />
<h4>Regina S. Bonifacio</h4>
<p>Adoption and Fostering Committee Head</p>
</div>
<div class="officer-box-green">
<img src="./assets/paws2.png" class="officer-paws" />
<h4>Henry James R. Carlos</h4>
<p>Cat Monitoring and Cat Feeding Committee Head</p>
</div>
<div class="officer-box-yellow">
<img src="./assets/paws2.png" class="officer-paws" />
<h4>Syruz Ken C. Domingo</h4>
<p>Creatives Committee Head</p>
</div>
<div class="officer-box-green">
<img src="./assets/paws2.png" class="officer-paws" />
<h4>Fervicmar D. Lagman</h4>
<p>Marketing Committee Head</p>
</div>
<div class="officer-box-yellow">
<img src="./assets/paws2.png" class="officer-paws" />
<h4>Hans Christian Queja</h4>
<p>Membership and Recruitment Committee Head</p>
</div>
<div class="officer-box-green">
<img src="./assets/paws2.png" class="officer-paws" />
<h4>Acelle Krislette Rosales</h4>
<p>Publication Committee Head</p>
</div>
</div>
<div class="organization-ribbon">
<span>Youth For Animals - PUP Main</span>
<span class="ribbon-dot"></span>
<span>PNU Paws</span>
<span class="ribbon-dot"></span>
<span>DLSU PUSA</span>
<span class="ribbon-dot"></span>
<span>DLSUD Patriots of Animal Welfare & Support</span>
<span class="ribbon-dot"></span>
</div>
</div>
</section>
<!-- Join Us Section -->
<section id="join-us" class="white-grid">
<div class="join-us-content">
<h2>Join Us in Protecting<br />PUP's Feline Friends!</h2>
<p>
Our officers lead the way, but we need your help to make a
difference. Together, we can create a safer, happier future<br />for
the cats of PUP Sta. Mesa.
</p>
<div class="fb-button">
<a
href="https://www.facebook.com/PUPSintangPusa"
class="facebook-button"
target="_blank"
>
Visit Our Facebook Page
<i class="bx bx-right-arrow-alt"></i>
</a>
</div>
</div>
<div class="paw-icon">
<img src="./assets/paws1.png" class="paws-right" />
</div>
<div class="back-to-top">
<a href="#">
Back to Top
<span class="arrow-up">↑</span>
</a>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-content">
<a
href="https://www.facebook.com/PUPSintangPusa"
class="logo-link"
target="_blank"
>
<div class="footer-logo">
<img src="./assets/pupsp-logo.png" alt="Sintang Pusa Logo" />
<div class="footer-tagline">
<p class="organization-name">Sintang Pusa</p>
<p class="organization-motto">For the Cats of PUP, We Serve</p>
</div>
</div>
</a>
<div class="social-links">
<a
href="https://www.linkedin.com/school/polytechnic-university-of-the-philippines/"
class="social-icon linkedin"
target="_blank"
>
<span class="sr-only">LinkedIn</span>
</a>
<a
href="https://www.facebook.com/PUPSintangPusa"
class="social-icon facebook"
target="_blank"
>
<span class="sr-only">Facebook</span>
</a>
<a
href="https://www.instagram.com/pupsp_ig/"
class="social-icon instagram"
target="_blank"
>
<span class="sr-only">Instagram</span>
</a>
<a
href="mailto:[email protected]"
class="social-icon email"
target="_blank"
>
<span class="sr-only">Email</span>
</a>
</div>
</div>
<div class="footer-bottom">
<nav class="footer-links">
<ul>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Statement</a></li>
</ul>
</nav>
<p class="copyright">Copyright © All rights reserved.</p>
</div>
</footer>
</body>
</html>