-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
831 lines (797 loc) · 41.2 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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.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=Inter:[email protected]&family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap"
rel="stylesheet"
/>
<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=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap"
rel="stylesheet"
/>
<title>Rizz</title>
</head>
<body>
<section class="landing">
<div class="title">
<h1>Heritage</h1>
<p>
Discover the enduring impact of Jose Rizal through this website, as
partial fulfillment for ENCE_4A. Explore his biography, family,
philosophies, works, and the Rizal Law.
</p>
</div>
</section>
<section id="section1">
<div class="container">
<div class="box bio" onclick="scrollToSection('section2')">
<div class="content">
<h2>Biography</h2>
<p>Basic Biography/Background Stuff</p>
</div>
</div>
<div class="box family" onclick="scrollToSection('section3')">
<div class="content">
<h2>Family</h2>
<p>Information about Rizal's Family</p>
</div>
</div>
<!-- <div class="box education" onclick="scrollToSection('section4')">
<div class="content">
<h2>Education</h2>
<p>Rizal's Educational Background</p>
</div>
</div> -->
<div class="box philosophies" onclick="scrollToSection('section5')">
<div class="content">
<h2>Philosophies</h2>
<p>Rizal's Philosophical Views</p>
</div>
</div>
<div class="box works" onclick="scrollToSection('section6')">
<div class="content">
<h2>Works</h2>
<p>Life and Works of Rizal</p>
</div>
</div>
<div
class="box law"
onclick="window.location.href='https://www.officialgazette.gov.ph/1956/06/12/republic-act-no-1425/'"
>
<div class="content">
<h2>Rizal Law</h2>
<p>Information about Rizal Law</p>
</div>
</div>
</div>
</section>
<section class="info-x" id="section2">
<div class="details">
<h2>Biography</h2>
<p>Basic Biography/Background Stuff</p>
<div class="biography">
<div style="flex-direction: column">
<h3>José Protacio Rizal Mercado y Alonso Realonda</h3>
<div>
<div class="facts">
<div
style="
display: flex;
flex-direction: column;
gap: 15px;
justify-content: center;
"
>
<div class="card">
<svg
class="img"
height="200px"
width="200px"
version="1.1"
id="_x32_"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 512 512"
xml:space="preserve"
fill="#aba9a9"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<g>
<path
class="st0"
d="M78.641,118.933c22.88,0,41.416-18.551,41.416-41.414c0-22.887-18.536-41.423-41.416-41.423 c-22.887,0-41.422,18.536-41.422,41.423C37.218,100.382,55.754,118.933,78.641,118.933z"
></path>
<path
class="st0"
d="M255.706,228.73v0.062c0.101,0,0.194-0.031,0.294-0.031c0.101,0,0.194,0.031,0.294,0.031v-0.062 c15.562-0.317,28.082-12.976,28.082-28.601c0-15.648-12.52-28.299-28.082-28.616v-0.063c-0.101,0-0.194,0.031-0.294,0.031 c-0.1,0-0.193-0.031-0.294-0.031v0.063c-15.563,0.317-28.082,12.968-28.082,28.616C227.623,215.754,240.143,228.413,255.706,228.73 z"
></path>
<path
class="st0"
d="M433.359,118.933c22.887,0,41.423-18.551,41.423-41.414c0-22.887-18.536-41.423-41.423-41.423 c-22.88,0-41.416,18.536-41.416,41.423C391.944,100.382,410.48,118.933,433.359,118.933z"
></path>
<path
class="st0"
d="M470.097,138.553h-36.312h-18.404c-21.106,0-40.432,11.831-50.033,30.622l-33.494,97.967 c-1.154,2.246-3.298,3.84-5.792,4.282c-2.493,0.442-5.048-0.309-6.914-2.036l-20.836-18.04c-6.233-5.769-14.408-8.973-22.902-8.973 H256h-19.41c-8.494,0-16.669,3.204-22.902,8.973l-20.835,18.04c-1.866,1.727-4.421,2.478-6.914,2.036 c-2.492-0.442-4.637-2.036-5.791-4.282l-33.495-97.967c-9.6-18.791-28.926-30.622-50.032-30.622H78.215H41.902 C21.834,138.553,0,160.387,0,180.464v139.211c0,10.034,8.13,18.171,18.164,18.171c4.939,0,0,0,12.682,0l6.906,118.725 c0,10.676,8.664,19.332,19.34,19.332c4.506,0,12.814,0,21.122,0c8.308,0,16.616,0,21.122,0c10.676,0,19.34-8.656,19.34-19.332 l6.906-118.725l-0.085-84.766c0-1.339,0.914-2.493,2.222-2.818c1.309-0.31,2.648,0.309,3.26,1.502l26.572,65.401 c3.206,6.256,9.152,10.654,16.074,11.885c6.922,1.231,14.022-0.844,19.186-5.613l25.426-18.729 c0.852-0.782,2.083-0.984,3.136-0.542c1.061,0.473,1.743,1.518,1.743,2.663l0.093,73.508l4.777,82.187 c0,7.387,6.001,13.379,13.395,13.379c3.113,0,8.865,0,14.618,0c5.753,0,11.506,0,14.618,0c7.394,0,13.394-5.992,13.394-13.379 l4.778-82.187l0.093-73.508c0-1.146,0.681-2.19,1.742-2.663c1.053-0.442,2.284-0.24,3.136,0.542l25.427,18.729 c5.164,4.769,12.264,6.844,19.186,5.613c6.922-1.231,12.868-5.629,16.073-11.885l26.573-65.401 c0.611-1.192,1.951-1.812,3.259-1.502c1.309,0.325,2.222,1.478,2.222,2.818l-0.085,84.766l6.906,118.725 c0,10.676,8.664,19.332,19.341,19.332c4.507,0,12.814,0,21.122,0c8.308,0,16.616,0,21.121,0c10.677,0,19.342-8.656,19.342-19.332 l6.906-118.725c12.682,0,7.742,0,12.682,0c10.034,0,18.164-8.137,18.164-18.171V180.464 C512,160.387,490.166,138.553,470.097,138.553z"
></path>
</g>
</g>
</svg>
<div class="textBox">
Jose Rizal was born on June 19, 1861, in Calamba, Laguna,
Philippines, to a wealthy family.
</div>
</div>
<div class="card">
<svg
class="img"
fill="#aba9a9"
viewBox="0 0 14 14"
role="img"
focusable="false"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<path
d="m 12.499079,12.25525 c 0.0968,0 0.188377,-0.0436 0.249339,-0.11884 0.06096,-0.0752 0.08473,-0.17385 0.06473,-0.26853 l -0.202146,-0.95662 c 0.115125,-0.11137 0.187491,-0.26686 0.187491,-0.43975 0,-0.182 -0.08106,-0.34343 -0.206876,-0.45558 l 0,-3.32202 -0.810333,0.50146 0,2.82056 c -0.125815,0.11215 -0.2069,0.27358 -0.2069,0.45558 0,0.17291 0.07239,0.32841 0.187515,0.43975 l -0.20217,0.95662 c -0.02,0.0947 0.0038,0.19335 0.06473,0.26853 0.06096,0.0752 0.152539,0.11884 0.249339,0.11884 l 0.625281,0 z M 12.773741,4.75539 7.5021019,1.49209 C 7.3477151,1.39699 7.1736728,1.34925 6.9996305,1.34925 c -0.1740423,0 -0.3482077,0.0477 -0.5016586,0.14284 l -5.271713,3.2633 C 1.0854931,4.84249 0.99999905,4.99633 0.99999905,5.1619 c 0,0.1656 0.085494,0.31949 0.22625985,0.40673 l 5.2716883,3.26333 c 0.153451,0.0952 0.3276163,0.14284 0.5016586,0.14284 0.1740423,0 0.3481092,-0.0477 0.5024714,-0.14284 L 12.773741,5.56863 c 0.140766,-0.0872 0.22626,-0.24113 0.22626,-0.40673 0,-0.16557 -0.08549,-0.31946 -0.22626,-0.40651 z M 6.9996059,9.78508 c -0.3283798,0 -0.6488777,-0.0912 -0.928242,-0.26411 l -3.0750017,-1.90368 0,3.27796 c 0,0.97016 1.7931578,1.7555 4.0032436,1.7555 2.2108742,0 4.0038842,-0.78536 4.0038842,-1.7555 l 0,-3.27796 -3.0748786,1.90368 C 7.6492472,9.69388 7.3279857,9.78508 6.9996059,9.78508 Z"
></path>
</g>
</svg>
<div class="textBox">
Rizal pursued higher education in Europe, studying in
Madrid, Paris, and Heidelberg, where he obtained degrees
in medicine and philosophy.
</div>
</div>
<div class="card">
<svg
class="img"
fill="#aba9a9"
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 35.738 35.738"
xml:space="preserve"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<g>
<path
d="M0,35.667c0,0,11.596-37.07,35.738-35.55c0,0-2.994,4.849-10.551,6.416c0,0,3.518,0.429,6.369-0.522 c0,0-1.711,5.515-11.025,6.273c0,0,5.133,1.331,7.414,0.57c0,0-0.619,4.111-10.102,6.154c-0.562,0.12-4.347,1.067-1.306,1.448 c0,0,4.371,0.763,5.514,0.381c0,0-3.744,5.607-12.928,5.132c-0.903-0.047-1.332,0-1.332,0L0,35.667z"
></path>
</g>
</g>
</svg>
<div class="textBox">
Rizal was a prolific writer and poet. His most famous
works include "Noli Me Tangere" and "El Filibusterismo,"
which criticized Spanish colonial rule in the Philippines.
</div>
</div>
</div>
<img
src="assets/riz.png"
alt="Jose Rizal"
class="rizal-image"
/>
<div
style="
display: flex;
flex-direction: column;
gap: 15px;
justify-content: center;
"
>
<div class="card">
<svg
class="img"
fill="#aba9a9"
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 182 260"
enable-background="new 0 0 182 260"
xml:space="preserve"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<path
d="M88.792,228.626l-0.235,0.078c-0.517-0.129-2.453-1.355-4.016-2.463l-0.285-0.202l-5.396,3.042l3.973,5.298h5.304 l0.12-0.388c1.407-4.573,1.083-4.888,0.847-5.119L88.792,228.626z M74.824,238.781c-0.808,0.135-3.762,0.049-5.084-0.005 l-2.041-2.041l-4.809,5.505l0.93,0.186c4.108,0.821,5.99,1.033,6.887,1.033c0.647,0,0.781-0.11,0.866-0.18l0.228-0.215v-0.141 c0.246-0.303,1.251-1.089,1.868-1.571c1.693-1.324,2.148-1.68,1.91-2.224C75.533,239.024,75.342,238.695,74.824,238.781z M40.617,258h2.253c1.3,0,13.113-1.409,13.615-1.468l1.122-0.134l-4.746-4.747L40.617,258z M94.117,100.917l-4.493-1.283 l-2.226,5.343l5.359,2.357l4.005-2.892L94.117,100.917z M126.271,170.731l7.103-6.561l7.616,5.077l-5.505,5.22l-7.616-0.456 L126.271,170.731z M92.867,147.482l-2.082,4.621l1.826,6.018l8.301-4.308l10.298-7.73l1.312-8.358l-9.299-0.485l-11.838-7.303 l-2.082,3.138l4.764,2.14L92.867,147.482z M39.41,150.249l0.969,6.589l-17.258,16.088l-4.935,6.076l-9.099,5.249l-7.075,7.93 l9.243-1.055l6.961-8.044l4.45-1.227l5.306-6.219l4.621-8.615l6.133-1.54l3.081-5.191l7.046-3.566l-3.822-6.162L39.41,150.249z M101.568,102.497l1.083-10.811l17.572,18.342l8.244-2.767l-6.447-7.844l6.447-4.907l-9.842-3.423l-6.789,2.739l-3.651-8.757 l-7.16-1.284l-4.479,8.387l-9.328-5.562l-3.109-15.233L80.8,65.242l7.017-14.663l8.272-2.967l6.162-16.374l-6.333-8.672 L95.89,11.471L74.295,2l-7.046,1.227l-3.537,12.294l-0.77,18.685l-1.74,4.593l1.626,9.015l-2.71,2.967l-6.532-3.908l-0.485,15.775 l7.189,12.038l11.781,2.254l1.027,3.623l-0.228,0.2l-6.847,5.22l0.028,4.793l12.637,7.274l6.732-5.962l8.985,3.053L101.568,102.497z M148.665,135.758l4.621,10.126l5.62-1.027l-1.768-15.661l-5.477-11.724l-16.745,0.969l1.797,4.65L148.665,135.758z M179.358,210.353l-3.851-3.423l1.483-6.361l-2.995-13.892l-7.303-10.212l-8.929,0.969l1.055,8.216l-1.426,0.685l-4.536-1.912 l-1.654,4.821l-6.39-2.225l-0.485,7.417l-20.282,11.41l-0.2-0.799l3.708-2.739l-2.196-8.701l-12.893,1.712l-2.995,7.075 l-12.066,2.653l-3.109,3.737l-1.598,9.842l-2.739,2.795l4.793,4.336l8.472-15.946l9.528,0.913l2.482,3.794l7.417-6.076l11.553,9.784 l-3.452,10.783l0.371,6.133l16.945,10.925l5.762-4.422l1.312,9.784l6.903-7.075l-1.854-10.839l-3.395-1.54l2.111-8.016l3.167-4.764 l2.939-1.74l4.821,9.756l10.156-8.016L179.358,210.353z M129.466,159.748l-2.482-7.189l-8.044,13.692l8.444-4.05L129.466,159.748z M121.792,151.162l-6.846-3.252l-5.562,7.245l-0.771,9.556l-7.674,2.767l-1.369,5.249l15.718,11.325l-1.398-14.548L121.792,151.162z M71.445,99.73l-6.162-0.228l-1.626,4.05l5.163,5.762l0.713,5.249l8.387,9.813l5.676-8.072l-2.111-11.125L71.445,99.73z M121.992,121.98l-3.081,2.881l-1.349,6.198l6.087-2.83l7.5,5.333l0.002-7.238L121.992,121.98z M153.884,159.777l-4.992-8.187 l0.571-7.674l-1.227-2.596l-10.783,0.656l2.767,6.104l4.364,3.081l-0.171,12.18L153.884,159.777z M50.461,137.075l-1.506-10.718 l4.521,3.015l2.344-0.837l1.173,3.181L50.461,137.075z"
></path>
</g>
</svg>
<div class="textBox">
Rizal was a prominent advocate for Philippine independence
and social reforms. He used his writings to expose the
abuses of the Spanish colonial government.
</div>
</div>
<div class="card">
<svg
class="img"
viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg"
fill="#aba9a9"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<path
d="M265.1 20.35l-18.1.1-.2 55.7c6-1 12.2-1 18.2 0zm-77 25.1c10 97.85 12.2 189.15-8 262.15-21.1 77.2-68.8 134.1-155 152.2l-.15 31.8 130.95.1c28.5-30.2 47.9-79.3 59.2-125.2 11.9-47.2 15.9-91.4 15.7-105.9l.2-.1c0-15.7-.4-55.9-2.5-95.9-1-19.9-2.5-39.8-4.7-56.2-1.8-15.65-4.8-28.45-7.2-34.35zm134.3 1.3L294 75.05c-2.1 5.7-4.6 18.2-6.5 33.55-1.8 16.4-3.2 36.1-4.2 55.9-1.9 39.7-2.2 80-2.2 96l-.1.1c0 14.4 3.9 58.6 15.7 105.7 11.5 46 30.8 95 59.3 125.3l131.1-.2-.1-31.8c-86.4-18.1-134.2-74.9-155.4-151.8-20.3-72.9-18.6-163.8-9.2-261.05zm-65.9 46.7c-5.9-.1-11.7 1.1-16 3.5.5 3 .8 5.95 1.3 9.15.7 5.5 1.3 11.3 1.8 17.2l24.4.1c.5-5.9 1-11.5 1.6-16.9.4-3.4.9-6.65 1.3-9.85-4.1-2.1-9.2-3.2-14.4-3.2zm-11.4 47.95c.4 4.6.7 9.3.9 14h19.7c.3-4.7.6-9.3.9-13.9zm1.9 32.1c1.6 36.2 2 70.7 2 86h14c0-15.2.3-49.7 1.8-85.9zm1.1 104c-.3 4.1-.6 8.6-1.1 13.5v200.5h17.8V290.1c-.5-4.6-.8-8.8-1.2-12.7zM283 384.6v106.8h14l-.2-64.7c-5.5-13.9-10-28.1-13.8-42.1zm-54.2.7c-3.8 13.9-8.5 28.1-13.8 41.8v64.3h13.8z"
></path>
</g>
</svg>
<div class="textBox">
His activism led to his exile in Dapitan, where he
continued his medical practice and contributed to
community development. Later arrested, tried, and executed
by firing squad on December 30, 1896, at the age of 35.
</div>
</div>
<div class="card">
<svg
class="img"
fill="#aba9a9"
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 256 256"
enable-background="new 0 0 256 256"
xml:space="preserve"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<path
d="M192.498,124.8c9.278,0,16.8,7.522,16.8,16.8s-7.522,16.8-16.8,16.8s-16.8-7.522-16.8-16.8S183.22,124.8,192.498,124.8z M171.798,166.6c9.278,0,16.8,7.522,16.8,16.8s-7.522,16.8-16.8,16.8s-16.8-7.522-16.8-16.8S162.52,166.6,171.798,166.6z M144.998,203.3h-18.9h-18.9c-11.5,0-18.7,9.5-18.7,21.4V254h12.9v-25.9c0-1.2,1-2,2-2c1.2,0,2,0.8,2,2v25.8h41.5v-25.8 c0-1.2,1-2,2-2c1.2,0,2,1,2,2v25.8h12.9v-29.1C163.998,212.8,156.698,203.3,144.998,203.3z M149.698,124.8 c9.278,0,16.8,7.522,16.8,16.8s-7.522,16.8-16.8,16.8s-16.8-7.522-16.8-16.8S140.42,124.8,149.698,124.8z M199.098,183.4 c0,9.3,7.5,16.8,16.8,16.8s16.8-7.5,16.8-16.8s-7.5-16.8-16.8-16.8S199.098,174.1,199.098,183.4z M197.398,203.3 c-11.5,0-18.7,9.5-18.7,21.4V254h12.9v-25.9c0-1.2,1-2,2-2c1.2,0,2,0.8,2,2v25.8h41.5v-25.8c0-1.2,1-2,2-2c1.2,0,2,1,2,2v25.8h12.9 v-29.1c0.2-12.1-7.1-21.6-18.7-21.6h-18.9h-19V203.3z M39.798,166.6c9.278,0,16.8,7.522,16.8,16.8s-7.522,16.8-16.8,16.8 s-16.8-7.522-16.8-16.8S30.52,166.6,39.798,166.6z M14.798,253.9v-25.8c0-1.2,1-2,2-2c1.2,0,2,0.8,2,2v25.8h41.5v-25.8 c0-1.2,1-2,2-2c1.2,0,2,1,2,2v25.8h12.9v-29.1c0.2-12.1-7.1-21.6-18.7-21.6h-18.9h-18.9c-11.5,0-18.7,9.5-18.7,21.4v29.3 L14.798,253.9L14.798,253.9z M109.298,183.4c0,9.3,7.5,16.8,16.8,16.8c9.3,0,16.8-7.5,16.8-16.8s-7.5-16.8-16.8-16.8 S109.298,174.1,109.298,183.4z M61.298,124.8c9.278,0,16.8,7.522,16.8,16.8s-7.522,16.8-16.8,16.8s-16.8-7.522-16.8-16.8 S52.02,124.8,61.298,124.8z M106.698,124.8c9.278,0,16.8,7.522,16.8,16.8s-7.522,16.8-16.8,16.8s-16.8-7.522-16.8-16.8 S97.42,124.8,106.698,124.8z M84.098,166.6c9.278,0,16.8,7.522,16.8,16.8s-7.522,16.8-16.8,16.8s-16.8-7.522-16.8-16.8 S74.82,166.6,84.098,166.6z M171.723,2H84.277c-4.429,0-8.01,3.581-8.01,8.01v54.465c0,4.429,3.581,8.01,8.01,8.01h5.465L88.8,100 l24.783-27.515h58.14c4.429,0,8.01-3.581,8.01-8.01V10.01C179.733,5.581,176.152,2,171.723,2z"
></path>
</g>
</svg>
<div class="textBox">
Rizal's martyrdom fueled the Philippine revolution against
Spanish rule. He is considered a national hero and his
writings continue to inspire Filipinos in their quest for
freedom and justice.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="info" id="section3">
<div class="details">
<h2>Family</h2>
<p>Information about Rizal's Family</p>
<div class="carousel">
<div class="carousel-track">
<!-- Image 1 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/dad.jpg" alt="Image 1" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Francisco Mercado</h4>
<p>
Don Francisco Rizal Mercado was born on May 11, 1818 and was
the youngest of his 13 siblings. Mercado was a well
respected man in their home town of Calamba in which
citizens made him their "cabeza de barangay" (head of town.)
He was of part Chinese descent, having been related to a
Chinese entrepreneur by the name of Domingo Lamco. Mercado
died shortly after Rizal in the home of his daughter,
Narcisa Rizal in Binondo, Manila on January 5, 1898.
</p>
</div>
</div>
</div>
<!-- Image 2 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/mom.jpg" alt="Image 2" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Teodora Alonso</h4>
<p>
Dona Teodora Alonso was born on November 14, 1827 in Santa
Cruz Manila. Her parents were Lorenzo Alonso, a municipal
captain and Brijida de Quintos, an educated housewife and
had four other siblings. It is said that her great
grandfather, Eugenio Ursua was of Japanese ancestry making
her of Japanese descent. When Teodora was 20 years old, she
married Francisco Mercado, a native from Binan, Laguna.
Together they prospered in Calamba after involving
themselves in business and agriculture. She was known to be
a hardworking, intelligent, business-minded woman. She died
in 1913 in Manila.
</p>
</div>
</div>
</div>
<!-- Image 3 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s1.jpg" alt="Image 3" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Saturnina Hidalgo</h4>
<p>
Saturnina Mercado Rizal Hidalgo was born in 1818 and was the
eldest sister of Jose Rizal. She had five children together
with husband Manuel T. Hidalgo and died the same year as her
mother in 1913.
</p>
</div>
</div>
</div>
<!-- Image 4 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s2.jpg" alt="Image 4" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Paciano Rizal</h4>
<p>
General Paciano Mercado Rizal aka "Lolo Ciano" was the only
brother of Jose Rizal. He was born in 1851 and studied in
Binan later attending school at the Colegio de San Jose in
Manila. After the execution of his brother, he joined in the
Philippine Revolution where he rose up to the ranks of a
General. He later married Severina Decena of Los Banos and
had two children of which one died at an early age. Paciano
passed away in 1930.
</p>
</div>
</div>
</div>
<!-- Image 5 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s3.jpg" alt="Image 5" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Narcisa Lopez</h4>
<p>
Narcisa Rizal Lopez was born in 1852 and was the one who
found the unmarked grave of her brother, Jose in the
abandoned Old Paco Cemetery. Narcisa married Antonio Lopez
who was a teacher and musician from Morong, Rizal. She died
in 1938.
</p>
</div>
</div>
</div>
<!-- Image 6 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s4.jpg" alt="Image 6" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Olympia Ubaldo</h4>
<p>
Olympia Rizal Ubaldo was born in 1855. She married Silvestre
Ubaldo and together they had three children. She died in
1887 when she was only 32 years old.
</p>
</div>
</div>
</div>
<!-- Image 7 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s5.jpg" alt="Image 7" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Lucia Herbosa</h4>
<p>
Lucia Rizal Herbosa was born in 1857. She married Mariano
Herbosa and had five children together. In 1889 Mariano died
due to an epidemic but was denied a Christian burial. This
was due to the fact that he was the brother-in-law of Jose
Rizal. This showed the beginning of the persecution of the
Rizal family by Spanish friars. Lucia died in 1919.
</p>
</div>
</div>
</div>
<!-- Image 8 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s6.jpg" alt="Image 8" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Maria Cruz</h4>
<p>
Maria Cruz Rizal was born in 1855. She married Daniel
Faustino Cruz of Binan, Laguna and together they had five
children. Mauricio Cruz, one of Maria's children, became a
student of Jose Rizal in Dapitan and was known to be one of
his uncle's favorites. Maria was a known recipient of many
of Jose's letters during his lifetime. Maria died in 1945.
</p>
</div>
</div>
</div>
<!-- Image 9 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s7.jpeg" alt="Image 9" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Concepcion Rizal</h4>
<p>
Concepcion Rizal was born in 1862. Concepcion did not live
very long as she died at the age of three in 1865.
</p>
</div>
</div>
</div>
<!-- Image 10 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s8.jpg" alt="Image 10" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Josefa Rizal</h4>
<p>
Josefa Rizal was born in 1865. She was unmarried and lived
together with her sister Trinidad until death. Josefa was
said to have suffered from epilepsy. She died in 1945.
</p>
</div>
</div>
</div>
<!-- Image 11 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s9.jpg" alt="Image 11" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Trinidad Rizal</h4>
<p>
Trinidad Rizal was born in 1868. She remained unmarried and
lived together with her sister Josefa. Trinidad was the one
who received an alcohol lamp from her brother Jose, in which
he secretly hid the "Last Farewell" better known as "Mi
Ultimos Adios," a poem Rizal wrote on the eve of his death
in 1896. Trinidad died in 1951, outliving all her siblings.
</p>
</div>
</div>
</div>
<!-- Image 12 -->
<div class="carousel-slide">
<div class="fam-content">
<div class="frame-container">
<img src="assets/s10.jpg" alt="Image 12" class="image" />
<img src="assets/frame.png" alt="Frame" class="frame" />
</div>
<div class="desc">
<h4>Soledad Quintero</h4>
<p>
Soledad Rizal Quintero was born in 1870 making her the
youngest of the Rizal siblings. She married Pantaleon
Quintero and together they had five children. Soledad died
in 1929.
</p>
</div>
</div>
</div>
</div>
<button class="carousel-button prev">
<svg
fill="#4E1E22"
viewBox="-8.5 0 32 32"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<title>back</title>
<path d="M15.281 7.188v17.594l-15.281-8.781z"></path>
</g>
</svg>
</button>
<button class="carousel-button next">
<svg
fill="#4E1E22"
viewBox="-8.5 0 32 32"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
>
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g
id="SVGRepo_tracerCarrier"
stroke-linecap="round"
stroke-linejoin="round"
></g>
<g id="SVGRepo_iconCarrier">
<title>next</title>
<path d="M0 24.781v-17.594l15.281 8.813z"></path>
</g>
</svg>
</button>
</div>
</div>
</section>
<!-- <section class="info-x" id="section4">
<div class="details">
<h2>Education</h2>
<p>Rizal's Educational Background</p>
</div>
</section> -->
<section class="info-x" id="section5">
<div class="column">
<div class="details">
<h2>Philosophies</h2>
<p>Rizal's Philosophical Views</p>
</div>
</div>
<div class="void" id="void">
<div class="crop">
<!-- list of info inside ul -->
<ul id="card-list" style="--count: 6">
<li>
<div class="r-card">
<a href=""
><span class="model-name">Philosophy of Education</span
><span
>Rizal emphasized the importance of education in developing
the potential of the Filipino people.</span
></a
>
</div>
</li>
<li>
<div class="r-card">
<a href=""
><span class="model-name">Philosophy of Reform</span
><span
>He advocated for peaceful reforms rather than violent
revolution as a means to achieve societal change.</span
></a
>
</div>
</li>
<li>
<div class="r-card">
<a href=""
><span class="model-name">Philosophy of Nationalism</span
><span
>Rizal believed in the importance of fostering a sense of
national identity and pride among Filipinos.</span
></a
>
</div>
</li>
<li>
<div class="r-card">
<a href=""
><span class="model-name">Philosophy of Indolence</span
><span
>Rizal debunked the myth of Filipino indolence, arguing that
it was a result of the oppressive colonial system.</span
></a
>
</div>
</li>
<li>
<div class="r-card">
<a href=""
><span class="model-name">Philosophy of Social Justice</span
><span
>Rizal advocated for equality and social justice, condemning
the abuses of the Spanish colonial regime.</span
></a
>
</div>
</li>
<li>
<div class="r-card">
<a href=""
><span class="model-name">Philosophy of Patriotism</span
><span
>Rizal exemplified love for country through his writings,
actions, and sacrifices for the Filipino people.</span
></a
>
</div>
</li>
</ul>
<div class="biggest-circle"></div>
<div class="mid-circle"></div>
</div>
<div class="mask">
<img class="rizal" src="assets/rizzy.jpg" />
</div>
<div class="cnt-circle"></div>
<div></div>
</div>
</section>
<section class="info-z" id="section6">
<div class="details">
<h2>Works</h2>
<p>Life and Works of Rizal</p>
</div>
<div class="container_6">
<div class="f-works">
<div class="col">
<img src="assets/noli.jpg" class="f-img" />
</div>
<div class="col">
<h3>Noli Me Tangere</h3>
<p class="f-descrip">
The novel introduces <span>Crisostomo Ibarra</span>, a young and
idealistic Filipino who returns to his homeland after completing
his education in Europe after seven years. Going back to his home
country, his eyes unfolded at the <span>harsh realities</span> his
fellow countrymen experience under the Spanish rule.
</p>
<p class="f-descrip">
The novel further explores the power struggle between the rich and
the poor, the exploitation of the lower class and pervasive abuse
of power. Appalled by such atrocities, Ibarra devised a plan to
take
<span>revenge</span> on the Spanish friars. The ending of the
novel? Well, it’s up to you to find out.
</p>
</div>
</div>
<div class="f-works">
<div class="col">
<img src="assets/elfili.jpg" class="f-img" />
</div>
<div class="col">
<h3>El Filibusterismo</h3>
<p class="f-descrip">
The sequel to Rizal’s Noli me Tángere, <span>13 years</span> after
that prison escape, we now follow Ibarra disguised as
<span>Simoun</span>, a wealthy jeweller here in El Filibusterismo
(translated as The Reign of the Greed). In the second novel,
Simoun tries to operate within the system, blending within the
higher ups and forming ties with the enemies while gathering
strength with his newfound allies.
</p>
<p class="f-descrip">
His plan was clear and carefully devised, but an unexpected turn
of events made an impact into the trajectory of his plan. Just
like its prequel, El Filibusterismo is one of the celebrated
written works of Jose Rizal, playing a significant role in
igniting the flames of
<span>nationalism</span> among the Filipinos. Trivia: Jose Rizal
dedicated El Filibusterismo to the GOMBURZA, the three martyr
Filipino priests who were accused of subversion and were executed
in the garrote.
</p>
</div>
</div>
</div>
</section>
<!-- <section class="info-x" id="section7">
<div class="details">
<h2>Rizal Law</h2>
<p>Information about Rizal Law</p>
</div>
</section> -->
<button id="scrollToSection1" onclick="scrollToSection('section1')">
<div class="arrow-up"></div>
</button>
<script>
function scrollToSection(sectionId) {
var section = document.getElementById(sectionId);
section.scrollIntoView({ behavior: "smooth" });
}
window.addEventListener("scroll", function () {
var button = document.getElementById("scrollToSection1");
var sections = [
"section2",
"section4",
"section5",
"section6",
"section7",
];
var scrollPosition = window.scrollY + window.innerHeight / 2;
var inTargetSection = false;
for (var i = 0; i < sections.length; i++) {
var section = document.getElementById(sections[i]);
var sectionTop = section.offsetTop;
var sectionHeight = section.offsetHeight;
if (
scrollPosition >= sectionTop &&
scrollPosition <= sectionTop + sectionHeight
) {
inTargetSection = true;
break;
}
}
if (inTargetSection) {
button.classList.add("bg-change");
} else {
button.classList.remove("bg-change");
}
});
const track = document.querySelector(".carousel-track");
const slides = Array.from(track.children);
const nextButton = document.querySelector(".next");
const prevButton = document.querySelector(".prev");
let currentIndex = 0;
nextButton.addEventListener("click", () => {
currentIndex = (currentIndex + 1) % slides.length;
track.style.transform = `translateX(-${currentIndex * 100}%)`;
});
prevButton.addEventListener("click", () => {
currentIndex = (currentIndex - 1 + slides.length) % slides.length;
track.style.transform = `translateX(-${currentIndex * 100}%)`;
});
</script>
</body>
</html>