-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1189 lines (1084 loc) · 40 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
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Portfolio Website Galih Anggoro Prasetya"
/>
<meta name="author" content="Galih Anggoro Prasetya" />
<meta name="robots" content="index, follow" />
<meta name="keywords" content="portfolio website, CV website" />
<title>Galih Anggoro Prasetya | Portfolio Website</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="assets/img/favicon.png" />
<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=Acme&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
integrity="sha512-tS3S5qG0BlhnQROyJXvNjeEM4UpMXHrQfTGmbQ1gKmelCxlSEBUaxhRBj/EFTzpbP4RVSrpEikbmdJobCvhE3g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.css"
integrity="sha512-OTcub78R3msOCtY3Tc6FzeDJ8N9qvQn1Ph49ou13xgA9VsH9+LRxoFU6EqLhW4+PKRfU+/HReXmSZXHEkpYoOA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="assets/style.css" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-J8QRHL4LMN"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-J8QRHL4LMN");
</script>
</head>
<body id="home">
<nav
class="navbar fixed-top bg-dark navbar-expand-lg bg-body-tertiary nav shadow"
>
<div class="container">
<a class="navbar-brand" href="#"
><i class="bi bi-github"></i> Galih Anggoro Prasetya</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skillset">Skillset</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="particles-js" class="mb-5 particles">
<div class="container">
<div class="row justify-content-center align-self-center">
<div class="col z-0 position-absolute p-5 rounded-3">
<img
src="assets/img/my-profile.webp"
class="rounded-circle mx-auto d-block mb-3 img"
alt="profile"
style="width: 250px; height: 250px"
/>
<h1 class="text-white text-center nama mb-4 acme-regular">
Galih Anggoro Prasetya
</h1>
<p class="text-white text-center bidang fs-4">
<span id="berjalan" class="acme-regular"></span>
<span id="cursor" class="blinking-cursor">|</span>
</p>
<div class="d-flex justify-content-center align-items-center mb-3">
<a
href="https://github.com/galihap76"
class="fs-2 me-4 text-white icons"
><i class="bi bi-github"></i
></a>
<a
href="https://www.facebook.com/galih.ap.357"
class="fs-2 me-4 text-white icons"
><i class="bi bi-facebook"></i>
</a>
<a
href="https://www.instagram.com/galihap.76/"
class="fs-2 me-4 text-white icons"
><i class="bi bi-instagram"></i>
</a>
<a
href="https://www.linkedin.com/in/galih-anggoro-prasetya/"
class="fs-2 text-white icons"
><i class="bi bi-linkedin"></i>
</a>
</div>
<p class="text-white fs-1 text-center">
<a href="#about"> <i class="bi bi-arrow-down-short arrow"></i></a>
</p>
</div>
</div>
</div>
</div>
<section id="about" class="anchor-about">
<div class="container mb-5">
<div class="row mb-3">
<div class="col">
<h3
class="text-center acme-regular"
data-aos="fade-down"
data-aos-duration="1000"
>
About
</h3>
</div>
</div>
<div class="row">
<div
class="col-md-6 mx-auto"
data-aos="fade-down"
data-aos-duration="1000"
>
<p>
My name is Galih Anggoro Prasetya. I live in Tegal, Indonesia. I
am an Indonesian computer science student at the School of
Management Informatics and Computer in the field of Informatics
Engineering.
</p>
<p>
I have an interest in backend development and penetration testing.
The backend technologies I often use are Laravel and MySQL. In
penetration testing, I frequently use various available tools to
speed up the exploitation process. Sometimes, I create simple
exploit programs using Python for penetration testing purposes.
</p>
<p>
I often spend time studying both of these fields, and of course,
this constantly enhances my skills. I continuously hone my skills
and never stop learning to improve them.
</p>
</div>
</div>
</div>
</section>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="#dcdcdc"
fill-opacity="1"
d="M0,256L34.3,250.7C68.6,245,137,235,206,192C274.3,149,343,75,411,64C480,53,549,107,617,144C685.7,181,754,203,823,181.3C891.4,160,960,96,1029,96C1097.1,96,1166,160,1234,165.3C1302.9,171,1371,117,1406,90.7L1440,64L1440,320L1405.7,320C1371.4,320,1303,320,1234,320C1165.7,320,1097,320,1029,320C960,320,891,320,823,320C754.3,320,686,320,617,320C548.6,320,480,320,411,320C342.9,320,274,320,206,320C137.1,320,69,320,34,320L0,320Z"
></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="#dcdcdc"
fill-opacity="1"
d="M0,64L48,80C96,96,192,128,288,154.7C384,181,480,203,576,181.3C672,160,768,96,864,96C960,96,1056,160,1152,181.3C1248,203,1344,181,1392,170.7L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"
></path>
</svg>
<section id="education" class="anchor-education">
<div class="container mb-5">
<div class="row mb-4">
<div class="col">
<h3
class="text-center acme-regular"
data-aos="fade-down"
data-aos-duration="1000"
>
Education
</h3>
</div>
</div>
<div class="row">
<div class="col">
<ul class="timeline" data-aos="fade-down" data-aos-duration="1000">
<li class="timeline-item mb-5 educations">
<h5 class="fw-bold">
Vocational High School (SMK Bhakti Praja Dukuhwaru)
</h5>
<p class="text-muted mb-2 fw-bold">2020 - 2022</p>
<p class="text-muted">Computer Network Engineering.</p>
</li>
<li class="timeline-item mb-5 educations">
<h5 class="fw-bold">
School of Management Informatics and Computer (STMIK YMI
TEGAL)
</h5>
<p class="text-muted mb-2 fw-bold">2022 - Now</p>
<p class="text-muted">Informatics Engineering.</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="experience" class="anchor-experience">
<div class="container">
<div class="row mb-4">
<div class="col">
<h3
class="text-center acme-regular"
data-aos="fade-down"
data-aos-duration="1000"
>
Experience
</h3>
</div>
</div>
<div class="row">
<div class="col">
<ul class="timeline" data-aos="fade-down" data-aos-duration="1000">
<li class="timeline-item mb-5">
<h5 class="fw-bold">Mancing (Mahasiswa Pecinta Coding)</h5>
<p class="text-muted mb-2 fw-bold">2023 - Now</p>
<p class="text-muted">
Joined as an organization member of the Coding Enthusiasts
Club at the campus.
</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="certificates" class="anchor-certificates">
<div class="container">
<div class="row mb-4">
<div class="col">
<h3
class="text-center acme-regular"
data-aos="fade-down"
data-aos-duration="1000"
>
Certificates
</h3>
</div>
</div>
<div class="row">
<div class="col">
<ul class="timeline" data-aos="fade-down" data-aos-duration="1000">
<li class="timeline-item mb-5 certificates">
<h5 class="fw-bold">SoloLearn Course HTML</h5>
<p class="text-muted mb-2 fw-bold">
HTML Course Certificate from SoloLearn for learning markup
language.
</p>
<p class="text-muted mb-2 fw-bold mb-3">19 January, 2021</p>
<p class="text-muted">
<a
href="https://galihap76.github.io/assets/certificates/certificate-1.jpeg"
class="btn btn-dark"
><i class="bi bi-eye-fill"></i> View Certificate</a
>
</p>
</li>
<li class="timeline-item mb-5 certificates">
<h5 class="fw-bold">SoloLearn Course PHP</h5>
<p class="text-muted mb-2 fw-bold">
PHP Course Certificate from SoloLearn for learning the PHP
programming language.
</p>
<p class="text-muted mb-2 fw-bold mb-3">08 April, 2022</p>
<p class="text-muted">
<a
href="https://galihap76.github.io/assets/certificates/certificate-2.jpeg"
class="btn btn-dark"
><i class="bi bi-eye-fill"></i> View Certificate</a
>
</p>
</li>
<li class="timeline-item mb-5 certificates">
<h5 class="fw-bold">Introduction to Programming Using Java</h5>
<p class="text-muted mb-2 fw-bold">
Oracle Academy Java Fundamentals for Learning Basic Algorithms
and Programming.
</p>
<p class="text-muted mb-2 fw-bold mb-3">28 May, 2023</p>
<p class="text-muted">
<a
href="https://galihap76.github.io/assets/certificates/certificate-3.pdf"
class="btn btn-dark"
><i class="bi bi-eye-fill"></i> View Certificate</a
>
</p>
</li>
<li class="timeline-item mb-5 certificates">
<h5 class="fw-bold">Oracle Database Certifications</h5>
<p class="text-muted mb-2 fw-bold">
Oracle Academy Database Foundations for learning database
fundamentals.
</p>
<p class="text-muted mb-2 fw-bold mb-3">27 June, 2023</p>
<p class="text-muted">
<a
href="https://galihap76.github.io/assets/certificates/certificate-4.pdf"
class="btn btn-dark"
><i class="bi bi-eye-fill"></i> View Certificate</a
>
</p>
</li>
<li class="timeline-item mb-5 certificates">
<h5 class="fw-bold">
Introduction to Information Security Course
</h5>
<p class="text-muted mb-2 fw-bold">
Certificate of Completion Introduction to Information
Security.
</p>
<p class="text-muted mb-2 fw-bold mb-3">09 March, 2024</p>
<p class="text-muted">
<a
href="https://galihap76.github.io/assets/certificates/certificate-5.pdf"
class="btn btn-dark"
><i class="bi bi-eye-fill"></i> View Certificate</a
>
</p>
</li>
<li class="timeline-item mb-5 certificates">
<h5 class="fw-bold">Web Penetration Testing</h5>
<p class="text-muted mb-2 fw-bold">
Certificate in Offensive Security Web Penetration Testing.
</p>
<p class="text-muted mb-2 fw-bold mb-3">13 July, 2024</p>
<p class="text-muted">
<a
href="https://galihap76.github.io/assets/certificates/certificate-6.pdf"
class="btn btn-dark"
><i class="bi bi-eye-fill"></i> View Certificate</a
>
</p>
</li>
<li class="timeline-item mb-5 certificates">
<h5 class="fw-bold">Network Fundamentals</h5>
<p class="text-muted mb-2 fw-bold">
Certificate in Network Fundamentals for Deepening Knowledge of
Basic Networking Again.
</p>
<p class="text-muted mb-2 fw-bold mb-3">31 August, 2024</p>
<p class="text-muted">
<a
href="https://galihap76.github.io/assets/certificates/certificate-7.pdf"
class="btn btn-dark"
><i class="bi bi-eye-fill"></i> View Certificate</a
>
</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="#dcdcdc"
fill-opacity="1"
d="M0,32L34.3,80C68.6,128,137,224,206,229.3C274.3,235,343,149,411,106.7C480,64,549,64,617,74.7C685.7,85,754,107,823,133.3C891.4,160,960,192,1029,202.7C1097.1,213,1166,203,1234,170.7C1302.9,139,1371,85,1406,58.7L1440,32L1440,320L1405.7,320C1371.4,320,1303,320,1234,320C1165.7,320,1097,320,1029,320C960,320,891,320,823,320C754.3,320,686,320,617,320C548.6,320,480,320,411,320C342.9,320,274,320,206,320C137.1,320,69,320,34,320L0,320Z"
></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="#dcdcdc"
fill-opacity="1"
d="M0,64L48,85.3C96,107,192,149,288,176C384,203,480,213,576,192C672,171,768,117,864,90.7C960,64,1056,64,1152,74.7C1248,85,1344,107,1392,117.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"
></path>
</svg>
<section id="skillset" class="anchor-skillset">
<div class="container">
<div class="row mb-4">
<div class="col">
<h3
class="text-center acme-regular"
data-aos="fade-down"
data-aos-duration="1000"
>
Skillset
</h3>
<p
class="text-center"
style="font-style: italic"
data-aos="fade-down"
data-aos-duration="1000"
>
Below are some of the tech stacks I often use. I am always
learning and keeping up with these technologies.
</p>
</div>
</div>
<!-- Front End -->
<div class="row mb-5">
<h3
class="acme-regular mb-3 text-center"
data-aos="fade-down"
data-aos-duration="1000"
>
Front End
</h3>
<div class="col">
<div
class="d-flex justify-content-center align-items-center mx-auto"
>
<div class="img-skillset">
<img
src="assets/img/html.webp"
style="width: 60px; height: 60px"
class="img-fluid me-3 skill"
/>
<img
src="assets/img/css.webp"
style="width: 60px; height: 60px"
class="img-fluid me-3 skill"
/>
<img
src="assets/img/javascript.webp"
style="width: 60px; height: 60px"
class="img-fluid me-3 skill"
/>
<img
src="assets/img/bootstrap.webp"
style="width: 70px; height: 60px"
class="img-fluid me-3 skill"
/>
</div>
</div>
<div
class="d-flex justify-content-center align-items-center mx-auto"
>
<div class="img-skillset">
<img
src="assets/img/jquery.webp"
style="width: 70px; height: 60px"
class="img-fluid skill mt-4"
/>
</div>
</div>
</div>
</div>
<!-- Back End -->
<div class="row mb-5">
<h3
class="acme-regular text-center"
data-aos="fade-down"
data-aos-duration="1000"
>
Back End
</h3>
<div class="col">
<div
class="d-flex justify-content-center align-items-center mx-auto"
>
<div class="img-skillset">
<img
src="assets/img/php.webp"
style="width: 80px; height: 90px"
class="img-fluid skill"
/>
<img
src="assets/img/laravel.webp"
style="width: 100px; height: 80px"
class="img-fluid skill"
/>
<img
src="assets/img/mysql.webp"
style="width: 80px; height: 80px"
class="img-fluid skill"
/>
</div>
</div>
</div>
</div>
<!-- Penetration Testing -->
<div class="row mb-5">
<h3
class="acme-regular mb-3 text-center"
data-aos="fade-down"
data-aos-duration="1000"
>
Penetration Testing
</h3>
<div class="col">
<div
class="d-flex justify-content-center align-items-center mx-auto"
>
<div class="img-skillset">
<img
src="assets/img/python.webp"
style="width: 60px; height: 60px"
class="img-fluid me-3 skill"
/>
<img
src="assets/img/sqlmap.webp"
style="width: 60px; height: 60px"
class="img-fluid me-3 skill"
/>
<img
src="assets/img/burp-suite.webp"
style="width: 60px; height: 60px"
class="img-fluid skill"
/>
<img
src="assets/img/metasploit.webp"
style="width: 80px; height: 70px"
class="img-fluid skill"
/>
</div>
</div>
<div
class="d-flex justify-content-center align-items-center mx-auto"
>
<div class="img-skillset">
<img
src="assets/img/nmap.webp"
style="width: 70px; height: 70px"
class="img-fluid me-3 skill"
/>
<img
src="assets/img/wireshark.webp"
style="width: 60px; height: 60px"
class="img-fluid skill"
/>
</div>
</div>
</div>
</div>
<!-- Others -->
<div class="row mb-3">
<h3
class="acme-regular mb-3 text-center"
data-aos="fade-down"
data-aos-duration="1000"
>
Others
</h3>
<div class="col">
<div
class="d-flex justify-content-center align-items-center mx-auto"
>
<div class="img-skillset">
<img
src="assets/img/postman.webp"
style="width: 100px; height: 80px"
class="img-fluid me-3 skill"
/>
<img
src="assets/img/mysql-workbench.webp"
style="width: 60px; height: 60px"
class="img-fluid me-3 skill"
/>
<img
src="assets/img/linux.webp"
style="width: 80px; height: 70px"
class="img-fluid me-3 skill"
/>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="anchor-projects">
<div class="container">
<div class="row mb-4">
<div class="col">
<h3
class="text-center acme-regular"
data-aos="fade-down"
data-aos-duration="1000"
>
Projects
</h3>
<p
class="text-center w-75 mx-auto"
style="font-style: italic"
data-aos="fade-down"
data-aos-duration="1000"
>
Below are some side projects that I consider interesting and have
worked on. Some projects have not been updated by me because there
are more important things to work on.
</p>
</div>
</div>
<div class="owl-carousel">
<!-- Project 1 -->
<div
class="card tokoku-card shadow bg-white rounded border border-secondary-subtle"
data-aos="zoom-in"
data-aos-duration="1000"
>
<img
src="assets/img/project1.webp"
class="card-img-top border-bottom border-secondary-subtle"
alt="project1"
/>
<div class="card-body">
<h5 class="card-title acme-regular">Tokoku</h5>
<div class="d-flex justify-content-start mb-2">
<img
src="assets/img/html.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/bootstrap.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/javascript.webp"
style="width: 30px; height: 30px"
class="mt-2"
/>
<img
src="assets/img/laravel.webp"
style="width: 60px; height: 46px"
/>
<img
src="assets/img/mysql.webp"
style="width: 50px; height: 50px"
/>
</div>
<p class="card-text">
Tokoku is a digital product marketplace platform that sells
digital products online with the Midtrans payment gateway. I
built this in accordance with the word 'tokoku,' which means
this platform is designed to sell my own products.
</p>
</div>
<a
href="https://github.com/galihap76/tokoku"
class="btn btn-dark tokoku-btn"
>
<i class="bi bi-github"></i> Visit</a
>
</div>
<!-- Project 2 -->
<div
class="card antrian-card shadow bg-white rounded border border-secondary-subtle"
data-aos="zoom-in"
data-aos-duration="1000"
>
<img
src="assets/img/project2.webp"
class="card-img-top border-bottom border-secondary-subtle"
alt="project2"
/>
<div class="card-body">
<h5 class="card-title acme-regular">Antrian</h5>
<div class="d-flex justify-content-start mb-2">
<img
src="assets/img/html.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/bootstrap.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/javascript.webp"
style="width: 30px; height: 30px"
class="mt-2 me-2"
/>
<img
src="assets/img/php.webp"
style="width: 40px; height: 50px"
class="me-2"
/>
<img
src="assets/img/mysql.webp"
style="width: 50px; height: 50px"
/>
</div>
<p class="card-text">
I built this web application for you if you are looking for a
reference for a queue web application. This application
functions similarly to queue systems in hospitals, such as
calling queue numbers using voice.
</p>
</div>
<a
href="https://github.com/galihap76/antrian"
class="btn btn-dark antrian-btn"
>
<i class="bi bi-github"></i> Visit</a
>
</div>
<!-- Project 3 -->
<div
class="card majema-card shadow bg-white rounded border border-secondary-subtle"
data-aos="zoom-in"
data-aos-duration="1000"
>
<img
src="assets/img/project3.webp"
class="card-img-top border-bottom border-secondary-subtle"
alt="project3"
/>
<div class="card-body">
<h5 class="card-title acme-regular">Majema</h5>
<div class="d-flex justify-content-start mb-2">
<img
src="assets/img/html.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/bootstrap.webp"
style="width: 30px; height: 30px"
class="mt-2"
/>
<img
src="assets/img/laravel.webp"
style="width: 60px; height: 46px"
/>
<img
src="assets/img/mysql.webp"
style="width: 50px; height: 50px"
/>
</div>
<p class="card-text">
Majema, short for manajemen mahasiswa, is a web application
built with the Laravel 9 framework. The purpose of this web
application is to manage student data within a campus, and I
built this as a reference project.
</p>
</div>
<a
href="https://github.com/galihap76/majema"
class="btn btn-dark majema-btn"
>
<i class="bi bi-github"></i> Visit</a
>
</div>
<!-- Project 4 -->
<div
class="card tasek-card shadow bg-white rounded border border-secondary-subtle"
data-aos="zoom-in"
data-aos-duration="1000"
>
<img
src="assets/img/project4.webp"
class="card-img-top border-bottom border-secondary-subtle"
alt="project4"
/>
<div class="card-body">
<h5 class="card-title acme-regular">Tasek</h5>
<div class="d-flex justify-content-start mb-2">
<img
src="assets/img/html.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/bootstrap.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/javascript.webp"
style="width: 30px; height: 30px"
class="mt-2 me-2"
/>
<img
src="assets/img/php.webp"
style="width: 40px; height: 50px"
class="me-2"
/>
<img
src="assets/img/mysql.webp"
style="width: 50px; height: 50px"
/>
</div>
<p class="card-text">
Tasek, short for tabungan sekolah, is a web application for
school savings designed for elementary, middle, and high school
students. I created this as a side project and as a reference.
</p>
</div>
<a
href="https://github.com/galihap76/tasek"
class="btn btn-dark tasek-btn"
>
<i class="bi bi-github"></i> Visit</a
>
</div>
<!-- Project 5 -->
<div
class="card tasek-card shadow bg-white rounded border border-secondary-subtle"
data-aos="zoom-in"
data-aos-duration="1000"
>
<img
src="assets/img/project5.webp"
class="card-img-top border-bottom border-secondary-subtle"
alt="project5"
/>
<div class="card-body">
<h5 class="card-title acme-regular">Portfolio Website</h5>
<div class="d-flex justify-content-start mb-2">
<img
src="assets/img/html.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/bootstrap.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
<img
src="assets/img/javascript.webp"
style="width: 30px; height: 30px"
class="mt-2 me-2"
/>
</div>
<p class="card-text">
My own portfolio website. This website showcases information
about me, as well as my expertise in backend development and
penetration testing.
</p>
</div>
<a
href="https://github.com/galihap76/galihap76.github.io"
class="btn btn-dark tasek-btn"
>
<i class="bi bi-github"></i> Visit</a
>
</div>
<!-- Project 6 -->
<div
class="card tasek-card shadow bg-white rounded border border-secondary-subtle"
data-aos="zoom-in"
data-aos-duration="1000"
>
<img
src="assets/img/project6.webp"
class="card-img-top border-bottom border-secondary-subtle"
alt="project6"
/>
<div class="card-body">
<h5 class="card-title acme-regular">Collector OSINT Tool</h5>
<div class="d-flex justify-content-start mb-2">
<img
src="assets/img/python.webp"
style="width: 30px; height: 30px"
class="me-2 mt-2"
/>
</div>
<p class="card-text">
Collector is an OSINT tool for information gathering. This tool
can retrieve information such as a person's phone number, IP
address, GitHub account, and Instagram account.
</p>
</div>
<a
href="https://github.com/galihap76/collector"
class="btn btn-dark tasek-btn"
>
<i class="bi bi-github"></i> Visit</a
>
</div>