-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1438 lines (1282 loc) · 84.5 KB
/
index.html
File metadata and controls
1438 lines (1282 loc) · 84.5 KB
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">
<title>Porfolio Nada</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Free HTML Templates" name="keywords">
<meta content="Free HTML Templates" name="description">
<meta http-equiv="refresh" content="180">
<!-- Favicon -->
<link href="img/self/fotodiri.jpg" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<style>
/*untuk bikin image kolase di projects*/
/* project1 */
#image-container3 {
width: 100%;
max-width: 400px;
height: 300px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
#image-container3 img {
width: 100%;
height: 100%;
object-fit: contain;
}
/* project2 */
#image-container4 {
width: 100%;
max-width: 400px;
height: 300px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
#image-container4 img {
width: 100%;
height: 100%;
object-fit: contain;
}
/* Gaya untuk teks pesan pseudo elemen yg muncul ketika hover ke logo studies */
.image-caption {
display: none; /* Sembunyikan teks pesan secara default */
position: absolute; /* Gunakan posisi absolut untuk tata letak */
/* background-color:#9195F6; Warna latar belakang semi transparan */
color: grey; /* Warna teks putih */
padding: 0.2px; /* Padding teks */
top: 5;
bottom: 0; /* Letakkan teks di bagian bawah */
left: 6em; /* Letakkan teks di sisi kiri */
right: 0; /* Letakkan teks di sisi kanan */
font-size: 15px;
}
/* Gaya untuk kontainer gambar */
.image-container {
position: relative; /* Gunakan posisi relatif untuk kontainer */
width: 500px; /* Lebar kontainer gambar */
height: 30px; /* Tinggi kontainer gambar */
}
/* Gaya untuk gambar */
.image-container img {
width: 100%; /*Agar gambar memenuhi lebar kontainer*/
height: 100%; /* Agar gambar memenuhi tinggi kontainer */
}
/* Tampilkan teks pesan saat mouse hover pada kontainer gambar */
.image-container:hover .image-caption {
display: block; /* Tampilkan teks pesan saat mouse hover */
}
/* untuk studies kolom 2 */
/* Gaya untuk teks pesan pseudo bagian ke 2 */
.image-caption2 {
display: none; /* Sembunyikan teks pesan secara default */
position: absolute; /* Gunakan posisi absolut untuk tata letak */
/* background-color:#9195F6; Warna latar belakang semi transparan */
color: grey; /* Warna teks putih */
padding: 0.2px; /* Padding teks */
top: 0.2;
bottom: 0; /* Letakkan teks di bagian bawah */
left: 17em; /* Letakkan teks di sisi kiri */
right: 0; /* Letakkan teks di sisi kanan */
font-size: 15px;
}
/* Gaya untuk kontainer gambar */
.image-container2 {
position: relative; /* Gunakan posisi relatif untuk kontainer */
width: 500px; /* Lebar kontainer gambar */
height: 30px; /* Tinggi kontainer gambar */
}
/* Gaya untuk gambar */
.image-container2 img {
width: 100%; /*Agar gambar memenuhi lebar kontainer*/
height: 100%; /* Agar gambar memenuhi tinggi kontainer */
}
/* Tampilkan teks pesan saat mouse hover pada kontainer gambar */
.image-container2:hover .image-caption2 {
display: block; /* Tampilkan teks pesan saat mouse hover */
}
</style>
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="51">
<!-- Navbar Start -->
<nav class="navbar fixed-top shadow-sm navbar-expand-lg bg-light navbar-light py-3 py-lg-0 px-lg-5">
<a href="index.html" class="navbar-brand ml-lg-3">
<h1 class="m-0 display-5"><span class="text-primary">Qonita</span>Qotrunnada</h1>
</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse px-lg-3" id="navbarCollapse">
<div class="navbar-nav m-auto py-0">
<a href="#home" class="nav-item nav-link active">Home</a>
<a href="#about" class="nav-item nav-link">About</a>
<a href="#qualification" class="nav-item nav-link">Record</a>
<a href="#skill" class="nav-item nav-link">Skill</a>
<a href="#service" class="nav-item nav-link">Service</a>
<a href="#certification" class="nav-item nav-link">Certification</a>
<a href="#project" class="nav-item nav-link">Project</a>
<a href="#activity" class="nav-item nav-link">Activity</a>
</div>
<a href="https://www.linkedin.com/in/qonitaq/" class="btn btn-outline-primary d-none d-lg-block" target="_blank">Hire Me</a>
</div>
</nav>
<!-- Navbar End -->
<!-- Header Start -->
<div class="container-fluid bg-primary d-flex align-items-center mb-5 py-5" id="home" style="min-height: 100vh;">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 px-5 pl-lg-0 pb-5 pb-lg-0">
<img class="img-fluid w-100 rounded-circle shadow-sm" src="img/self/fotodiri.jpg" alt="foto diri">
</div>
<div class="col-lg-7 text-center text-lg-left">
<h3 class="text-white font-weight-normal mb-3">I'm</h3>
<h1 class="display-3 text-uppercase text-primary mb-2" style="-webkit-text-stroke: 2px #ffffff;">Qonita Qotrunnada</h1>
<h1 class="typed-text-output d-inline font-weight-lighter text-white"></h1>
<div class="typed-text d-none">IoT Engineer, Web Developer, Mobile Developer</div>
<div class="d-flex align-items-center justify-content-center justify-content-lg-start pt-5">
<a href="https://drive.google.com/file/d/1F1gtOeTC8LVGqG567CVhS6UY-j2_LzYa/view?usp=sharing" class="btn btn-outline-light mr-5" target="_blank">Download CV</a>
<a href="https://www.linkedin.com/in/qonitaq/" class="btn btn-outline-light mr-5" target="_blank">
<img src="img/contact/linkedin.png" alt="linkedin" style="width: 30%;">
</a>
<a href="https://github.com/nadaqqn" class="btn btn-outline-light mr-5" target="_blank">
<img src="img/contact/github.png" alt="GitHub" style="width: 30%;">
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Header End -->
<!-- About Start -->
<div class="container-fluid py-5" id="about">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center">
<h1 class="display-1 text-uppercase text-white" style="-webkit-text-stroke: 1px #dee2e6;">About</h1>
<h1 class="position-absolute text-uppercase text-primary">About Me</h1>
</div>
<div class="row align-items-center">
<div class="col-lg-5 pb-4 pb-lg-0">
<img class="img-fluid rounded w-100" src="img/self/fotodiri.jpg" alt="foto diri">
</div>
<div class="col-lg-7">
<h3 class="mb-4">IoT Engineer & Web Developer & Android Developer</h3>
<p>Passionate about IoT Engineering, Front-end Development, and Mobile Development, I am always eager to learn, explore IT projects, and share knowledge. A graduate of the 2-year professional program at CEP-CCIT FTUI, University of Indonesia, with a specialization in Information Technology - Internet System-Based Automation, I am currently pursuing a bachelor's degree (S1) in Information Technology, focusing on Intelligent Systems, at Trilogi University. I have hands-on experience as an IoT engineer intern and have actively worked on IT projects for the past year.</p>
<div class="row mb-3">
<div class="col-sm-6 py-2"><h6>Name: <span class="text-secondary">Qonita Qotrunnada</span></h6></div>
<div class="col-sm-6 py-2"><h6>Birthday: <span class="text-secondary">22 Agustus 2004</span></h6></div>
<div class="col-sm-6 py-2"><h6>Degree: <span class="text-secondary">Bachelor of Computer Science (S.Kom) & 2 Years Information Technology Professional Program</span></h6></div>
<div class="col-sm-6 py-2"><h6>Phone: <span class="text-secondary">087810101212</span></h6></div>
<div class="col-sm-6 py-2"><h6>Email: <span class="text-secondary">qqotrunnada22@gmail.com</span></h6></div>
<div class="col-sm-6 py-2"><h6>Address: <span class="text-secondary">Jakarta Selatan</span></h6></div>
</div>
<a href="https://wa.me/6287810101212" class="btn btn-outline-primary mr-4" target="_blank">Hire Me</a>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Qualification Start -->
<div class="container-fluid py-5" id="qualification">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center">
<h1 class="display-1 text-uppercase text-white" style="-webkit-text-stroke: 1px #dee2e6;">Record</h1>
<h1 class="position-absolute text-uppercase text-primary">Education & Work Expericence</h1>
</div>
<div class="row align-items-center">
<div class="col-lg-6">
<h3 class="mb-4">My Education</h3>
<div class="border-left border-primary pt-2 pl-4 ml-2">
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute" style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Bachelor of Computer Science</h5>
<div class="image-container">
<a href="https://trilogi.ac.id/universitas/" target="_blank" >
<!-- Teks pesan -->
<span class="image-caption">
Klik gambar untuk kunjungi halaman
</span>
<img src="img/studies/logo-trilogi.png" alt="Trilogi University" style="top: 0px; margin-left: 0px; width: 7%"></img>
</a>
</div>
<p class="mb-2"><strong>Trilogi University</strong> | <small>2022 - 2026</small></p>
<p>I am pursuing a Bachelor's degree (S.Kom) in Information Technology, specializing in Intelligent Systems at Trilogi University. My studies include artificial intelligence, focusing on machine learning and neural networks; electronics, covering circuits and sensors; automation systems, involving process design and implementation; and digital image processing, where I gained skills in visual data analysis and manipulation.</p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute" style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">2-year Professional Program</h5>
<div class="image-container2">
<a href="https://ccit.eng.ui.ac.id/sample-page/" target="_blank">
<img src="img/studies/ccit.png" alt="CEP CCIT - FTUI" style="top: 0px; margin-left: 0px; width: 15%"></img>
</a>
<a href="https://ccit.eng.ui.ac.id/sample-page/" target="_blank">
<img src="img/studies/netacad_.png" alt="Netacad - Cisco Networking Academy" style="top: 0px; margin-left: 0px; width: 20%"></img>
</a>
<a href="https://www.niit.com/indonesia/" target="_blank">
<img src="img/studies/niit_.png" alt="NIIT- National Institute of Information Technology" style="top: 0px; margin-left: 0px; width: 12%"></img>
</a>
<!-- Teks pesan -->
<div class="image-caption2">
Klik gambar untuk kunjungi halaman
</div>
</div>
<p class="mb-2"><strong>CEP CCIT - FTUI & NIIT (National Institute of Information Technology) & Netacad (Cisco Networking Academy)</strong> | <small>2022 - 2024</small></p>
<p>During my 2-year professional program at CEP CCIT FTUI, I gained comprehensive IT skills. I became proficient in C++ (for OOP) and Python (for backend programming), applying object-oriented principles to create scalable software. In mobile development, I focused on Java and Kotlin to build Android apps, while enhancing my web development skills with HTML, CSS, JavaScript, and PHP. I gained hands-on experience with SQL for relational databases and Firebase for NoSQL, along with Linux server configuration, IT security, and network management. I explored IoT by connecting devices like switches and Raspberry Pi for web servers, working with circuits and sensors. Additionally, I completed Cisco Networking Academy courses in Big Data, IoT, Cyber Security, Hackathons, and Connecting Things, further developing my technical expertise and teamwork skills.</p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute" style="top: 70px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Senior High School</h5>
<!--image container-->
<div class="image-container">
<a href="https://www.sman4-jakarta.sch.id/" target="_blank">
<img src="img/studies/sman4.png" alt="SMAN 4 Jakarta" style="top: 0px; margin-left: 0px; width: 40px"; height="100px"></img>
</a>
<!-- Teks pesan -->
<span class="image-caption">
Klik gambar untuk kunjungi halaman
</span>
</div>
<p class="mb-2"><strong>SMAN 4 Jakarta</strong> | <small>2020 - 2022</small></p>
<p>During my time at SMA Negeri 4 Jakarta, I was enrolled in the natural sciences (IPA or Ilmu Pengetahuan Alam) program. The subjects I studied included Mathematics, Physics, Chemistry, Biology, as well as other subjects.</p>
</div>
</div>
</div>
<div class="col-lg-6">
<h3 class="mb-4">Work Expericence</h3>
<div class="border-left border-primary pt-2 pl-4 ml-2">
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute" style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">IoT Engineer | Internship</h5>
<p class="mb-2"><strong>Tim Inkubator UI & Yayasan bayi Prematur Indonesia (YABAPI) </strong> | <small>May 2024 - August 2024</small></p>
<p>I developed a specialized Arduino IDE library (TIUI) to integrate vital sign sensors and TFT LCD displays for pocket health monitoring. The library, designed and coded in C++, supports microcontrollers such as Arduino Uno and ESP32, along with TFT LCDs like ILI9486, ILI9488, ILI9341, and ST7735. I also implemented and tested user-friendly graphical interfaces to display vital health data, enhancing the connectivity and functionality of IoT devices for real-world healthcare applications. This experience allowed me to gain expertise in embedded systems, IoT development, and healthcare technology innovation.</p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute" style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Workshop Ngoprek#2 "Dasar Pemrograman Mikrokontroller dan Sensor dalam Perancangan Sistem Perangkat Keras berbasis IoT"| Facilitator and Speaker</h5>
<p class="mb-2"><strong>CEP-CCIT FTUI</strong> | <small>23-24 April 2024</small></p>
<p>I introduced IoT concepts and provided step-by-step guidance to participants, ensuring everyone was actively involved in the hands-on exercises. We connected microcontrollers with sensors, integrated them with the internet, transmitted data from sensors, and monitored it through an IoT dashboard application. The workshop attracted CCIT FTUI students from various majors, especially those outside the Internet System-Based Automation (ISA) program, who were interested in IoT topics covered in the ISA curriculum. This experience allowed me to share practical knowledge with a diverse audience and showcase real-world IoT applications. </p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute" style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Teaching Assistant | Asisten Belajar</h5>
<p class="mb-2"><strong>CEP-CCIT FTUI</strong> | <small>March 2024 - July 2024</small></p>
<p>As an "Asisten Belajar" at CEP CCIT FTUI, I taught IT classes and supported juniors in topics like relational databases, fundamentals of IT including pseudocode and flowcharts, methods and tools for analyzing data to support informed decision-making, design and implement databases using Microsoft SQL Server through practical exercises, applied object-oriented programming principles in Java using the NetBeans IDE, and C++ OOP. This role allowed me to share my knowledge sincerely, creating an engaging learning environment that not only helped students grasp complex concepts but also contributed to my growth as both a learner and an educator who enjoys both teaching and learning.</p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute" style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">IT Freelancer</h5>
<p class="mb-2"><strong>via Whatsapp Messenger</strong> | <small>Apr 2023 - Maret 2024</small></p>
<p>Provided custom development services for websites, mobile applications, design models, and more, delivering tailored solutions that met each client’s unique needs. By thoroughly understanding project objectives, I ensured the seamless implementation of requested features, achieving high-quality results and client satisfaction.</p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute" style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Apprentice Frontend Developer | Internship</h5>
<p class="mb-2"><strong>Tell : Stories around you</strong> | <small>June 2023 - August 2023</small></p>
<p>Guided and assigned in creating web page interfaces, frameworks : Tailwind, and installing open source software: node.js to run JavaScript-based web applications</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Qualification End -->
<!-- Skill Start -->
<div class="container-fluid py-5" id="skill">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center">
<h1 class="display-1 text-uppercase text-white" style="-webkit-text-stroke: 1px #dee2e6;">Skills</h1>
<h1 class="position-absolute text-uppercase text-primary">My Skills</h1>
</div>
<div class="row align-items-center">
<div class="col-md-6">
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">HTML & CSS</h6>
<h6 class="font-weight-bold">95%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-primary" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">Javascript</h6>
<h6 class="font-weight-bold">50%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">PHP</h6>
<h6 class="font-weight-bold">10%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">C & C++</h6>
<h6 class="font-weight-bold">95%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">Python</h6>
<h6 class="font-weight-bold">50%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-dark" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill mb-4">
<div class="d-flex justify-content-between">
<h6 class="font-weight-bold">Java & Kotlin & Flutter</h6>
<h6 class="font-weight-bold">70%</h6>
</div>
<div class="progress">
<div class="progress-bar bg-info" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Skill End -->
<!-- Services Start -->
<div class="container-fluid pt-5" id="service">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center">
<h1 class="display-1 text-uppercase text-white" style="-webkit-text-stroke: 1px #dee2e6;">Service</h1>
<h1 class="position-absolute text-uppercase text-primary">My Services</h1>
</div>
<div class="row pb-3">
<div class="col-lg-4 col-md-6 text-center mb-5">
<div class="d-flex align-items-center justify-content-center mb-4">
<i class="fa fa-2x fa-laptop service-icon bg-primary text-white mr-3"></i>
<h4 class="font-weight-bold m-0">Teaching and Workshop Speaker:</h4>
</div>
<ul>
<li>Teaching official classes at my campus, including courses like Introduction to IT, Database Management, and Object-Oriented Programming in Java.</li>
<li>Serving as a teaching assistant at CEP CCIT FTUI, helping juniors improve their grades and understanding of coursework.</li>
<li>Facilitating workshops on microcontroller programming and sensor integration for IoT systems.</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 text-center mb-5">
<div class="d-flex align-items-center justify-content-center mb-4">
<i class="fa fa-2x fa-laptop-code service-icon bg-primary text-white mr-3"></i>
<h4 class="font-weight-bold m-0">Software Development and Programming:</h4>
</div>
<ul>
<li>Developing applications in Java, including GUI design with Swing and To-Do List applications.</li>
<li>Creating mobile applications in Kotlin and Flutter, integrating Firebase for database management and implementing CRUD operations, calendars, and reminders.</li>
<li>Developing web applications and managing web development projects.</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 text-center mb-5">
<div class="d-flex align-items-center justify-content-center mb-4">
<i class="fas fa-2x fa-wifi service-icon bg-primary text-white mr-3"></i>
<h4 class="font-weight-bold m-0">Internet of Things (IoT) Solutions:</h4>
</div>
<ul>
<li>Designing and implementing IoT projects using Arduino IDE, ESP8266, ultrasonic sensors, and TFT displays.</li>
<li>Connecting devices to WiFi and managing IoT systems through platforms like Blynk.</li>
<li>Conducting practical projects in IoT solutions and working with electronic circuits and sensors.</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 text-center mb-5">
<div class="d-flex align-items-center justify-content-center mb-4">
<i class="fas fa-2x fa-database service-icon bg-primary text-white mr-3"></i>
<h4 class="font-weight-bold m-0">Database and Information Systems:</h4>
</div>
<ul>
<li>Designing and implementing relational databases using MS SQL Server, Firebase for online database and XAMPP (PHP and MySQL).</li>
<li>Managing and analyzing information systems to support decision-making.</li>
<li>Developing applications with server-side programming languages.</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 text-center mb-5">
<div class="d-flex align-items-center justify-content-center mb-4">
<i class="fas fa-2x fa-tablet-alt service-icon bg-primary text-white mr-3"></i>
<h4 class="font-weight-bold m-0">Multimedia and User Interface Design</h4>
</div>
<ul>
<li>Creating wireframes for mobile apps before starting the coding process.</li>
<li>Developing UML diagrams and understanding user flow to design for the target users of the app.</li>
<li>Designing app features and interfaces while understanding the direction of app development.</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 text-center mb-5">
<div class="d-flex align-items-center justify-content-center mb-4">
<i class="fas fa-2x fa-file service-icon bg-primary text-white mr-3" ></i>
<h4 class="font-weight-bold m-0">Professional Certification and Training:</h4>
</div>
<ul>
<li>Holding certifications in big data, IoT, cybersecurity, and hackathon participation from the National Institute of Technology in collaboration with Cisco Networking Academy.</li>
<li>Providing professional training and workshops in IoT and microcontroller programming.</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Services End -->
<!-- cert Start -->
<div class="container-fluid pt-5 pb-3" id="certification">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center">
<h1 class="display-1 text-uppercase text-white" style="-webkit-text-stroke: 1px #dee2e6;">Cert</h1>
<h1 class="position-absolute text-uppercase text-primary">My Certification</h1>
</div>
<div class="row">
<div class="col-12 text-center mb-2">
<!-- Menggunakan id cert-filters untuk memisahkan filter halaman cert -->
<ul class="list-inline mb-4" id="cert-filters">
<li class="btn btn-sm btn-outline-primary m-1 active" data-filter="*">All</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".first">Cisco Networking Academy</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".second">Organizational</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".third">Workshop's Speaker</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".fourth">CCIT FTUI 2 years-IT Professional Program</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".fifth">Courses Completed</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".sixth">Internship</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".seventh">TOEFL</li>
</ul>
</div>
</div>
<div class="row cert-container">
<div class="col-lg-4 col-md-6 mb-4 cert-item first">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/IoT Security - CISCO CERTIFICATE - IoT Fundamentals - IoT Security.jpg" alt="IoT Security Cisco Networking Academy Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/IoT Security - CISCO CERTIFICATE - IoT Fundamentals - IoT Security.jpg" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item first">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/Hackathon - CISCO CERTIFICATE - IoT Fundamentals - Hackathon Playbook.jpg" alt="Hackathon Cisco Networking Academy Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/Hackathon - CISCO CERTIFICATE - IoT Fundamentals - Hackathon Playbook.jpg" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item first">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/Connecting Things - CISCO CERTIFICATE - IoT Fundamentals - Connecting Things.jpg" alt="Connecting Things Cisco Networking Academy Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/Connecting Things - CISCO CERTIFICATE - IoT Fundamentals - Connecting Things.jpg" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item first">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/Big Data & Analytics - CISCO IoT Fundamentals - Big Data & Analytics.jpg" alt="Big Data & Analytics Cisco Networking Academy Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/Big Data & Analytics - CISCO IoT Fundamentals - Big Data & Analytics.jpg" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item third">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/workshop - certification-workshop-speaker.PNG" alt="IoT Workshop Speaker">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/workshop - certification-workshop-speaker.PNG" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item second">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/sekre - Sertifikat Staff Komandro 33.png" alt="Secretary Organizational Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/sekre - Sertifikat Staff Komandro 33.png" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item fourth">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/CCIT-Cert.jpg" alt="Professional Program CCIT FTUI Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/CCIT-Cert.jpg" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item fifth">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/dicoding-web.png" alt="Web Course Dicoding Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/dicoding-web.png" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item fifth">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/dicoding-fe.png" alt="Front-end Course Dicoding Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/dicoding-fe.png" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item fifth">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/dicoding-python.png" alt="Python Course Dicoding Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/dicoding-python.png" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item fifth">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/ngobar-data.png" alt="Ngobar data Analyst CCIT Certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/ngobar-data.png" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item sixth">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/magang-iot.png" alt="Internship completed certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/magang-iot.png" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 cert-item seventh">
<div class="position-relative overflow-hidden mb-2">
<img class="img-fluid rounded w-100" src="img/certification/toefl-cert.png" alt="toefl score certification">
<div class="portfolio-btn bg-primary d-flex align-items-center justify-content-center">
<a href="img/certification/toefl-cert.png" data-lightbox="portfolio">
<i class="fa fa-plus text-white" style="font-size: 60px;"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- cert End -->
<!-- Project Start -->
<div class="container-fluid pt-5" id="project">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center">
<h1 class="display-1 text-uppercase text-white" style="-webkit-text-stroke: 1px #dee2e6;">Creation</h1>
<h1 class="position-absolute text-uppercase text-primary">My Projects</h1>
</div>
<!-- Filter buttons start -->
<div class="row">
<div class="col-12 text-center mb-2">
<ul class="list-inline mb-4" id="portfolio-flters">
<li class="btn btn-sm btn-outline-primary m-1 active" data-filter="*">All</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".website">Website</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".desktop-app">Desktop App</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".android">Android App</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".database">Database</li>
<li class="btn btn-sm btn-outline-primary m-1" data-filter=".uml">UML Diagram</li>
</ul>
</div>
</div>
<!-- Filter buttons end-->
<div class="row pb-3 portfolio-container">
<!--playmath website-->
<div class="col-lg-4 col-md-6 playmath-gallery text-center mb-5 portfolio-item website">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">PlayMath | HTML, CSS, JS, Firebase Hosting and Realtime Database Responsive w/Media Query</h4>
</div>
<div id="playmath-container">
<img id="playmath-current-image" class="img-fluid rounded" src="img/project/playmath/playmath-home.jpg" alt="Playmath home">
</div>
<br>
<button onclick="prevPlayMathImage()" class="btn btn-primary mx-1">Previous</button>
<button onclick="nextPlayMathImage()" class="btn btn-primary mx-1">Next</button>
<br><br>
<ul>
<li>
<h6>Website URL:</h6>
<a href="https://playmath-a3b62.web.app/" target="_blank">playmath</a>
</li>
<li>
<h6>Link GitHub source code:</h6>
<a href="https://github.com/nadaqqn/play-math.git" target="_blank">https://github.com/nadaqqn/play-math.git</a>
</li>
<li>
<h6>Description:</h6>
<p>PlayMath is an interactive website that teaches basic arithmetic operations such as addition, subtraction, multiplication, and division, complete with tutorials and engaging quizzes of various difficulty levels and time settings. Designed to be responsive, PlayMath can be accessed on PCs, laptops, tablets, and smartphones. Built with Firebase Hosting and Realtime Database, this website ensures easy, secure, and enjoyable access to enhance arithmetic skills.</p>
</li>
</ul>
</div>
<!--desktop start-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item desktop-app">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Java Desktop Application - Register, Login and Dashboard Pages</h4>
</div>
<div id="portfolio-container">
<div id="image-container3">
<img id="current-image" src="img/project/desktopApp/register.png" alt="Register">
</div>
</div>
<br>
<button onclick="prevImage()" class="btn btn-primary mx-1">Previous</button>
<button onclick="nextImage()" class="btn btn-primary mx-1">Next</button>
<ul>
<br>
<li> <h6>Link GitHub source code:</h6>
<a href="https://github.com/nadaqqn/ToDoListApp-JavaDesktopApp.git" target="_blank">https://github.com/nadaqqn/ToDoListApp-JavaDesktopApp.git</a>
</li>
<li>
<h6>Description:</h6>
<p>This is a Java Desktop To-Do List app with three main pages: Register, Login, and Dashboard. Users register on the Register page, their data stored in an XAMPP database. They log in on the Login page using their registered credentials. The Dashboard has three tabs: About, Task Management, and Feedback. Task Management is where users add tasks, including details like task name, date, timestamp, and categories. Tasks are displayed in a list table, allowing CRUD operations.</p>
</li>
</ul>
</div>
<!--berkeboon website-->
<div class="col-lg-4 col-md-6 berkeboon-gallery text-center mb-5 portfolio-item website">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Berkeboon | HTML, CSS, JS, Responsive w/Media Query</h4>
</div>
<div id="berkeboon-container">
<img id="berkeboon-current-image" class="img-fluid rounded" src="img/project/berkeboon/home.jpg" alt="berkeboon home">
</div>
<br>
<button onclick="prevberkeboonImage()" class="btn btn-primary mx-1">Previous</button>
<button onclick="nextberkeboonImage()" class="btn btn-primary mx-1">Next</button>
<br><br>
<ul>
<li>
<h6>Website URL:</h6>
<a href="https://bit.ly/Berkeboon" target="_blank">berkeboon</a>
</li>
<li>
<h6>Link GitHub source code:</h6>
<a href="https://github.com/nadaqqn/Berkeboon-Website.git" target="_blank">https://github.com/nadaqqn/Berkeboon-Website.git</a>
</li>
<li>
<h6>Description:</h6>
<p>Berkeboon is a responsive website that offers transaction features with landscaping service options, static pricing on the Pricing page, and printable receipts through the Receipt page, hosted on GitHub Pages without a backend.</p>
</li>
</ul>
</div>
<!--web blockchain-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item website">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Website with 'Add to Cart' and Blockchain transactions | HTML, CSS, JS</h4>
</div>
<a href="https://nadaqqn.github.io/Transaksi-produk-dengan-metode-blockchain/" target="_blank">
<img src="img/project/blockchain.png" alt="" style="width:100%">
</a>
<ul>
<li>
<h6>Website URL:</h6>
<a href="https://nadaqqn.github.io/Transaksi-produk-dengan-metode-blockchain/" target="_blank">https://nadaqqn.github.io/Transaksi-produk-dengan-metode-blockchain/</a>
</li>
<li>
<h6>Link GitHub source code: </h6>
<a href="https://github.com/nadaqqn/Transaksi-produk-dengan-metode-blockchain" target="_blank">https://github.com/nadaqqn/Transaksi-produk-dengan-metode-blockchain</a>
</li>
<li>
<h6>Description:</h6>
<p>I created a website that showcases products with a 'Add to Cart' feature. The cart feature allows users to empty their cart, add or remove specific items, and submit their selection when they have finished adding items to their cart. Additionally, the website includes a system log/history feature. After clicking the submit button, users receive a 'Transaction Note with Blockchain Method' containing columns for Index, Timestamp, Amount, Previous Hash, and Hash. </p>
</li>
</ul>
</div>
<!--android toast-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item android">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Android Application - Radio Button| Java Programming Language</h4>
</div>
<a href="img/project/android-radio-button.jpg" target="_blank">
<img src="img/project/android-radio-button.jpg" alt="Android Application - Radio Button | Java Programming Language" style="width: 60%">
</a>
<ul>
<li>
<h6>Link GitHub source code: </h6>
<a href="https://github.com/nadaqqn/RadioButtonJava.git">https://github.com/nadaqqn/RadioButtonJava.git</a>
</li>
<li>
<h6>Description: </h6>
<p>The application displays several buttons that are interactive with the user. By clicking on each one, a Radio Button notification will appear.</p>
</li>
</ul>
</div>
<!--android toast-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item android">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Android Application - Custom Alert Dialog | Java Programming Language</h4>
</div>
<a href="img/project/mobileapp.png" target="_blank">
<img src="img/project/mobileapp.png" alt="Android Application - Custom Alert Dialog | Java Programming Language" style="width: 60%">
</a>
<ul>
<li>
<h6>Link GitHub source code: </h6>
<a href="https://github.com/nadaqqn/Android-Application-Custom-Alert-Dialog.git">https://github.com/nadaqqn/Android-Application-Custom-Alert-Dialog.git</a>
</li>
<li>
<h6>Description: </h6>
<p>The application displays several buttons that are interactive with the user. By clicking on each one, a custom alert notification will appear.</p>
</li>
</ul>
</div>
<!--GUI-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item desktop-app">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Program Pencatatan Gudang | Python GUI</h4>
</div>
<a href="img/project/python.png" target="_blank">
<img src="img/project/python.png" alt="Program Pencatatan Gudang | Python GUI
" style="width: 60%">
</a>
<ul>
<li>
<h6>Link GitHub source code: </h6>
<a href="https://github.com/nadaqqn/python-GUI---Program-Pencatatan-Gudang">https://github.com/nadaqqn/python-GUI---Program-Pencatatan-Gudang</a>
</li>
<li>
<h6>Description: </h6>
<p>This warehouse recording program consists of the features 'Add Items', 'Delete Items' 'Register Items', 'Change Number of Items' and 'Exit'. This is a program with the python programming language for GUI (Graphical User Interface).</p>
</li>
</ul>
</div>
<!--database-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item database">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Database Ojek Online | SQL Server</h4>
</div>
<a href="img/project/database.jpg" target="_blank">
<img src="img/project/database.jpg" alt="Database Ojek Online | SQL Server" style="width: 100%">
</a>
<ul>
<li>
<h6>Link GitHub source code: </h6>
<a href="https://github.com/nadaqqn/DatabaseOjekOnline_SQL_Server/tree/master">DatabaseOjekOnline_SQL_Server</a>
</li>
<li>
<h6>Description: </h6>
<p>This is a Database of 'Ojek Online' i made with my friends in campus. This database contains 6 tables, and promote for table of Customer, Driver, Vehicle, Trip, Transaction, and DetailTransaction. Already include for CRUD (Create, Read, Update, Delete) and implementation of procedure and trigger function of codes that helps to give information automatically about each transaction.</p>
</li>
</ul>
</div>
<!--database bnsp-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item database">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Database Toko Padi Jaya (BNSP)</h4>
</div>
<div id="database-image-container">
<img id="current-image-database" src="img/project/bnsp/trigger-procedure.png" alt="trigger procedure" class="img-fluid rounded">
</div>
<br>
<button onclick="prevdatabaseImage()" class="btn btn-primary mx-1">Previous</button>
<button onclick="nextdatabaseImage()" class="btn btn-primary mx-1">Next</button>
<br><br>
<ul>
<li>
<h6>Notion URL:</h6>
<a href="https://qonitaqotrunnada.notion.site/Modul-Pengembangan-Program-UJIKOM-BNSP-194e82c096f744a4897c0f956fe277bd?pvs=4" target="_blank">Notion URL: Database Toko Padi Jaya</a>
</li>
<li>
<h6>Description:</h6>
<p>This database project uses Java and MySQL with XAMPP to manage user input, validate stock, process transactions, reduce inventory via an SQL trigger, calculate total prices with an 11% tax, and includes a procedure to search products by type.
</li>
</ul>
</div>
<!--uml diagram-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item uml">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">UML (Unified Modelling Language) Diagram</h4>
</div>
<div id="uml-image-container">
<img id="current-image-uml" src="img/project/uml-diagram/usecase-diagram.png" alt="use case diagram" class="img-fluid rounded">
</div>
<br>
<button onclick="prevUMLImage()" class="btn btn-primary mx-1">Previous</button>
<button onclick="nextUMLImage()" class="btn btn-primary mx-1">Next</button>
<br><br>
<ul>
<li>
<h6>Google Drive URL:</h6>
<a href="https://docs.google.com/file/d/10dsqtHUqqdLs1oYFrI69K6bzf3f2OIhp/edit?usp=docslist_api&filetype=msword" target="_blank">https://bit.ly/Portfolio -UML-Diagram-QonitaQ</a>
</li>
<li>
<h6>Description:</h6>
<p>A modeling (visual) for system implementation of an application program such as flow for application programs. Which consists of who the system actors are, such as customers, systems, and staff, what and the purpose of the system, and how the system works to meet the needs of the actors.</p>
</li>
</ul>
</div>
<!--my day website-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item website">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">My Day Application | HTML, CSS, JS, Responsive w/Media Query</h4>
</div>
<div id="image-container4">
<img id="current-image2" src="img/project/myDay/home.png" alt="Register">
</div>
<br>
<button onclick="prevImage2()" class="btn btn-primary mx-1">Previous</button>
<button onclick="nextImage2()" class="btn btn-primary mx-1">Next</button>
<br><br>
<ul>
<li>
<h6>Website URL:</h6>
<a href="https://nadaqqn.github.io/myDay-website/" target="_blank">My Day Application (nadaqqn.github.io)</a>
</li>
<li>
<h6>Link GitHub source code:</h6>
<a href="https://github.com/nadaqqn/myDay-website.git" target="_blank">https://github.com/nadaqqn/myDay-website.git</a>
</li>
<li>
<h6>Description:</h6>
<p>"My Day Application" is a web app designed to enhance productivity, featuring daily task notes, self-reflection tools, water intake reminders, and motivational quotes. Users can reflect on their day, track water intake, and manage tasks efficiently for a more productive day.</p>
</li>
</ul>
</div>
<!--web register-->
<div class="col-lg-4 col-md-6 text-center mb-5 portfolio-item website">
<div class="d-flex align-items-center justify-content-center mb-4">
<h4 class="font-weight-bold m-0">Single Page HTML - Registration Page | HTML, CSS, JS</h4>
</div>
<a href="https://bit.ly/Single-RegistrationPage-Web-URL" target="_blank">
<img src="img/project/single-page-html.jpg" alt="Single Page HTML" style="width: 100%">
</a>
<ul>
<li>
<h6>Website URL:</h6>
<a href="https://bit.ly/Single-RegistrationPage-Web-URL">https://bit.ly/Single-RegistrationPage-Web-URL</a>
</li>
<li>
<h6>Link GitHub source code: </h6>
<a href="https://github.com/nadaqqn/Single-RegistrationPage" target="_blank">https://github.com/nadaqqn/Single-RegistrationPage</a>
</li>
<li>
<h6>Purpose:</h6>
<p>Submitting to the Apprentice Frontend Developer - UI Test for 'Tell : Stories around you' Application Internship.</p>
</li>
<li>
<h6>Description:</h6>