forked from mrepol742/mrepol742.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1298 lines (1286 loc) · 81 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>
<!--
""# mmmmmm mm mmmm
mmmmm m mm mmm mmmm mmm # #" m"# " "#
# # # #" " #" # #" "# #" "# # m" #" # m"
# # # # #"""" # # # # # m" #mmm#m m"
# # # # "#mm" ##m#" "#m#" "mm m" # m#mmmm
#
" -->
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<meta property="og:type" content="profile" />
<meta charset="utf-8">
<meta property="og:image:alt" content="Picture of Melvin Jones Repol">
<meta property="twitter:image:src" content="/images/mrepol742.png" />
<meta property="twitter:title" content="Melvin Jones Repol - Software Engineer" />
<meta property="twitter:description"
content="I am proficient in variety of technologies and programming languages, gaining experience from years hard work self studying. My skills evolves around Software Engineering, Web Development, SEO, Computer Hardware and Software." />
<meta property="og:title" content="Melvin Jones Repol - Software Engineer">
<meta property="og:url" content="https://mrepol742.github.io">
<link rel="license" href="https://raw.githubusercontent.com/mrepol742/mrepol742.github.io/master/LICENSE">
<link rel="sitemap" type="application/xml" title="Melvin Jones Repol » Sitemap" href="/sitemap.xml">
<link rel="canonical" href="https://mrepol742.github.io">
<link rel="alternate" type="application/rss+xml" title="Melvin Jones Repol » Feed"
href="https://mrepol742.github.io/rss.xml">
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml"
title="Melvin Jones Repol » Webvium Search">
<meta property="og:site_name" content="Melvin Jones Repol - Software Engineer">
<meta property="og:description"
content="I am proficient in variety of technologies and programming languages, gaining experience from years hard work self studying. My skills evolves around Software Engineering, Web Development, SEO, Computer Hardware and Software.">
<meta property="og:image" content="/images/mrepol742.png">
<meta name="theme-color" content="#ffffff">
<meta name="keywords"
content="melvin jones repol, mrepol742, software engineer, web developer, seo, project orion, webvium, self taught">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="I am proficient in variety of technologies and programming languages, gaining experience from years hard work self studying. My skills evolves around Software Engineering, Web Development, SEO, Computer Hardware and Software.">
<meta name="author" content="Melvin Jones Repol">
<meta property="profile:username" content="mrepol742">
<meta name="twitter:site" content="@mrepol742" />
<meta name="twitter:creator" content="@mrepol742" />
<meta name="twitter:domain" content="mrepol742.github.io" />
<meta name="twitter:card" content="summary_large_image">
<link rel="manifest" href="/site.webmanifest">
<script type="application/ld+json">
{
"@context": "http://www.schema.org",
"@type": "Person",
"@id": "https://mrepol742.github.io/#person",
"name": "Melvin Jones Repol",
"nationality": "Filipino",
"birthPlace" : {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Quezon City",
"addressRegion": "NCR",
"addressCountry": "Philippines"
}
},
"gender": "Male",
"Description": "Programmer",
"disambiguatingDescription": "Founder of Webvium & Project Orion",
"jobTitle": "Software Engineer",
"worksFor": [
{
"@type": "Organization",
"name": "Freelancer",
"sameAs": [
"https://www.freelancer.com/",
"https://www.fiverr.com/",
"https://www.upwork.com/"
]
}
],
"url": "https://mrepol742.github.io",
"image": "https://en.gravatar.com/userimage/207125946/3e6f42da466d844d85f693936083ffd7.jpg?size=500",
"address": {
"@type": "PostalAddress",
"addressLocality": "Caloocan City",
"addressRegion": "NCR",
"addressCountry": "Philippines"
},
"sameAs": [
"https://twitter.com/mrepol742",
"https://pinterest.com/mrepol742",
"https://instagram.com/melvinjonesrepol",
"https://www.facebook.com/melvinjonesrepol",
"https://linkedin.com/in/mrepol742",
"https://github.com/mrepol742",
"https://en.wikialpha.org/wiki/Melvin_Jones_Repol",
"https://en.everybodywiki.com/Melvin_Jones_Repol",
"https://wakatime.com/@mrepol742",
"https://dev.to/mrepol742",
"https://tiktok.com/@mrepol742",
"https://youtube.com/@mrepol742",
"https://www.f6s.com/mrepol742",
"https://mrepol742.medium.com/",
"https://about.me/mrepol742",
"https://dev.to/mrepol742",
"https://hashnode.com/@mrepol742",
"https://www.buymeacoffee.com/mrepol742",
"https://www.patreon.com/join/melvinjonesrepol/checkout",
"https://dribbble.com/mrepol742",
"https://www.crunchbase.com/person/melvin-jones-repol",
"https://en.gravatar.com/mrepol742",
"https://www.goodreads.com/user/show/145975913-melvin-jones-repol"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What are my projects?",
"acceptedAnswer": {
"@type": "Answer",
"text": " <h3>Projects:</h3> <ul> <li>Webvium</li> <li>My Portfolio</li> <li>Webvium Search</li> <li>Webvium VPN</li> <li>Restaurant System</li> <li>CRUD</li> <li>Terminal</li> <li>Login System</li> <li>Project Orion</li> <li>Online Catering System</li> <li>Room Rental System</li> <li>Chatbot</li> </ul> <p>View my github repository to see more.<br><a href=\"https://github.com/mrepol742\">https://github.com/mrepol742</a></p>"
}
}, {
"@type": "Question",
"name": "What language i mostly used?",
"acceptedAnswer": {
"@type": "Answer",
"text": " <h3>Languages:</h3> <ol> <li>Java</li> <li>JavaScript</li> <li>CSS</li> <li>PHP</li> <li>HTML</li> <li>XML</li> </ol>"
}
},
{
"@type": "Question",
"name": "What editors i mostly used?",
"acceptedAnswer": {
"@type": "Answer",
"text": "<h3>IDE/Text Editor:</h3> <ol> <li>VS Code</li> <li>Android Studio</li> </ol>"
}
},
{
"@type": "Question",
"name": "When do i often work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "<p>I'm a night guy, so my brain function really well at night.</p>"
}
},
{
"@type": "Question",
"name": "Do i have a girlfriend?",
"acceptedAnswer": {
"@type": "Answer",
"text": "<p>Yes and her name is Maryvil Alexa Guno.</p>"
}
}
]
}
</script>
<link rel="stylesheet" href="/assets/bootstrap.min.css">
<meta name="hostname" content="mrepol742.github.io">
<link rel="stylesheet" href="/css/mrepol742.css">
<link rel="shortcut icon" href="/favicon.png">
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-TFD9TXR');</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5077097159223655"
crossorigin="anonymous"></script>
<link rel="apple-touch-icon" href="/favicon.png">
<title>Melvin Jones Repol - Software Engineer</title>
</head>
<body class="d-flex flex-column min-vh-100">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TFD9TXR" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<nav class="autohide navbar navbar-expand-lg navbar-light fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#me">Melvin Jones Repol</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation" id="qwe111">
<span class="navbar-toggler-icon" id="qwe"></span>
</button>
<div class="collapse navbar-collapse justify-content-between align-items-center" id="navbarText">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0 mx-auto text-md-center text-left">
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#workexp">Work Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#friends">Friends</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown22" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Support
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown22">
<li>
<a href="https://www.buymeacoffee.com/mrepol742">
<img
src="https://img.shields.io/badge/Buy%20Me%20a%20Coffee-ffdd00?style=for-the-badge&logo=buy-me-a-coffee&logoColor=black"
alt="BuyMeACoffee">
</a>
<a href="https://www.patreon.com/melvinjonesrepol">
<img
src="https://img.shields.io/badge/Patreon-F96854?style=for-the-badge&logo=patreon&logoColor=white"
alt="Patreon">
</a>
<a href="https://paypal.me/mrepol742">
<img src="https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white"
alt="PayPal">
</a>
<a href="https://ko-fi.com/mrepol742">
<img loading="lazy"
src="https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white"
alt="Ko-Fi">
</a>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav flex-row justify-content-md-center justify-content-start flex-nowrap">
<li class="nav-item"><a class="nav-link" href="/webvium/">Webvium</a></li>
<li class="nav-item"><a class="nav-link" href="/project-orion/chat/">Chat</a> </li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown2" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
More
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown2">
<li>
<a href="/search/" class="nav-item">Search</a>
</li>
<li>
<a href="/webviumvpn/" class="nav-item">VPN</a>
</li>
<li>
<a href="/viewip/" class="nav-item">View IP</a>
</li>
<li>
<a href="/useragent/" class="nav-item">User Agent</a>
</li>
<li>
<a href="/sketch/" class="nav-item">Sketch</a>
</li>
<li>
<a href="/wallpaper/" class="nav-item">Wallpaper</a>
</li>
<li>
<a href="/calculator/" class="nav-item">Calculator</a>
</li>
<li>
<a href="/calendar/" class="nav-item">Calendar</a>
</li>
<li>
<a href="/rgbcalculator/" class="nav-item">RGB Calculator</a>
</li>
<li>
<a href="/ily/" class="nav-item">Ily</a>
</li>
<li>
<a href="/flowers/" class="nav-item">Flowers</a>
</li>
<li>
<a href="/valentines/" class="nav-item">Valentines</a>
<a href="/screensizes/" class="nav-item">Screen Sizes</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<main>
<div class="toast" id="privacypolicy"
style="position: fixed; bottom: 0; right: 0; z-index: 9999; float: right; margin: 3%;" data-bs-autohide="false">
<div class="toast-body">
<p>This site uses cookies to provide services and to analyze traffic. <a href="/privacypolicy/"
id="learnmore">Privacy Policy</a></p>
<div class="mt-2 pt-2">
<button type="button" class="btn btn-primary btn-sm" id="accpt">Accept</button>
</div>
</div>
</div> <noscript>
<div class="nojs">
An error occurred. Try reloading this page, or enable JavaScript if it is disabled in your browser.
</div>
</noscript>
<header>
<div class="card mb-3 " id="me">
<div class="row g-0">
<div class="col-md-4">
<div id="cacc" class="carousel slide" data-bs-ride="carousel" style="padding: 10px;">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/images/305620973_197705909297536_1418418276482485489_n.jpg" class="d-block w-100 imgc"
alt="Melvin Jones Repol Photo">
</div>
<div class="carousel-item">
<img src="/images/311125433_202860732115387_1783050851377346904_n.jpg"
class="d-block w-100 imgc" alt="Melvin Jones Repol Photo">
</div>
<div class="carousel-item">
<img src="/images/317999191_213083571093103_7708008693793317382_n.jpg"
class="d-block w-100 imgc" alt="Melvin Jones Repol Photo">
</div>
<div class="carousel-item">
<img loading="lazy" src="/images/320946051_881734013167414_8176601765212566910_n.jpg"
class="d-block w-100 imgc" alt="Melvin Jones Repol Photo">
</div>
<div class="carousel-item">
<img loading="lazy" src="/images/321962962_566617611556193_2432569582610056352_n.jpg"
class="d-block w-100 imgc" alt="Melvin Jones Repol Photo">
</div>
<div class="carousel-item">
<img loading="lazy" src="/images/322240348_1221077552160577_6147260240794407410_n.jpg"
class="d-block w-100 imgc" alt="Melvin Jones Repol Photo">
</div>
<div class="carousel-item">
<img loading="lazy" src="/images/319740793_675470854050375_5531461446004254416_n.jpg"
class="d-block w-100 imgc" alt="Melvin Jones Repol Photo">
</div>
</div>
</div>
</div>
<div class="col-md-8" id="person">
<div class="card-body">
<h1 class="card-title">Melvin Jones Repol</h1>
<p class="card-text">
I'm Mj, a self-taught software engineer who began self-studying in 2018 when I discovered programming to
be an intriguing subject. I have experience in web development, search engine optimization (SEO), and
knowledge of computer hardware. I'm currently a second-year college student, though programming classes
didn't help me much since I had already learned and studied them alone years ago. I'm relieved that I
don't have to worry about it. Though this is not the end of my journey, it's just getting started. The
learning process is never-ending and has no boundaries.
<br><br>
<a href="https://facebook.com/melvinjonesrepol" style="padding-left: 3px; padding-right: 3px;"
target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Melvin Jones' Facebook</title>
<path fill="#484848"
d="M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z" />
</svg>
</a>
<a href="https://instagram.com/melvinjonesrepol" style="padding-left: 3px; padding-right: 3px;"
target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Melvin Jones' Instagram</title>
<path fill="#484848"
d="M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z" />
</svg>
</a>
<a href="https://pinterest.com/mrepol742" style="padding-left: 3px; padding-right: 3px;"
target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Melvin Jones' Pinterest</title>
<path fill="#484848"
d="M9.04,21.54C10,21.83 10.97,22 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2A10,10 0 0,0 2,12C2,16.25 4.67,19.9 8.44,21.34C8.35,20.56 8.26,19.27 8.44,18.38L9.59,13.44C9.59,13.44 9.3,12.86 9.3,11.94C9.3,10.56 10.16,9.53 11.14,9.53C12,9.53 12.4,10.16 12.4,10.97C12.4,11.83 11.83,13.06 11.54,14.24C11.37,15.22 12.06,16.08 13.06,16.08C14.84,16.08 16.22,14.18 16.22,11.5C16.22,9.1 14.5,7.46 12.03,7.46C9.21,7.46 7.55,9.56 7.55,11.77C7.55,12.63 7.83,13.5 8.29,14.07C8.38,14.13 8.38,14.21 8.35,14.36L8.06,15.45C8.06,15.62 7.95,15.68 7.78,15.56C6.5,15 5.76,13.18 5.76,11.71C5.76,8.55 8,5.68 12.32,5.68C15.76,5.68 18.44,8.15 18.44,11.43C18.44,14.87 16.31,17.63 13.26,17.63C12.29,17.63 11.34,17.11 11,16.5L10.33,18.87C10.1,19.73 9.47,20.88 9.04,21.57V21.54Z" />
</svg>
</a>
<a href="https://twitter.com/mrepol742" style="padding-left: 3px; padding-right: 3px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Melvin Jones' Twitter</title>
<path fill="#484848"
d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z" />
</svg>
</a>
<a href="https://github.com/mrepol742" style="padding-left: 3px; padding-right: 3px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Melvin Jones' Github</title>
<path fill="#484848"
d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://linkedin.com/in/mrepol742" style="padding-left: 3px; padding-right: 3px;"
target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Melvin Jones' LinkedIn</title>
<path fill="#484848"
d="M19 3A2 2 0 0 1 21 5V19A2 2 0 0 1 19 21H5A2 2 0 0 1 3 19V5A2 2 0 0 1 5 3H19M18.5 18.5V13.2A3.26 3.26 0 0 0 15.24 9.94C14.39 9.94 13.4 10.46 12.92 11.24V10.13H10.13V18.5H12.92V13.57C12.92 12.8 13.54 12.17 14.31 12.17A1.4 1.4 0 0 1 15.71 13.57V18.5H18.5M6.88 8.56A1.68 1.68 0 0 0 8.56 6.88C8.56 5.95 7.81 5.19 6.88 5.19A1.69 1.69 0 0 0 5.19 6.88C5.19 7.81 5.95 8.56 6.88 8.56M8.27 18.5V10.13H5.5V18.5H8.27Z" />
</svg>
</a>
<a href="https://youtube.com/@mrepol742" style="padding-left: 3px; padding-right: 3px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Melvin Jones' Youtube</title>
<path fill="#484848"
d="M10,15L15.19,12L10,9V15M21.56,7.17C21.69,7.64 21.78,8.27 21.84,9.07C21.91,9.87 21.94,10.56 21.94,11.16L22,12C22,14.19 21.84,15.8 21.56,16.83C21.31,17.73 20.73,18.31 19.83,18.56C19.36,18.69 18.5,18.78 17.18,18.84C15.88,18.91 14.69,18.94 13.59,18.94L12,19C7.81,19 5.2,18.84 4.17,18.56C3.27,18.31 2.69,17.73 2.44,16.83C2.31,16.36 2.22,15.73 2.16,14.93C2.09,14.13 2.06,13.44 2.06,12.84L2,12C2,9.81 2.16,8.2 2.44,7.17C2.69,6.27 3.27,5.69 4.17,5.44C4.64,5.31 5.5,5.22 6.82,5.16C8.12,5.09 9.31,5.06 10.41,5.06L12,5C16.19,5 18.8,5.16 19.83,5.44C20.73,5.69 21.31,6.27 21.56,7.17Z" />
</svg>
</a>
</p>
</div>
</div>
</div>
</div>
</header>
<h2 class="text-center" id="projects">Projects</h2><br>
<div class="row">
<div class="col-sm-6">
<div class="card ">
<video class="rounded mx-auto d-block img-fluid" controls poster="/images/webvium22.png">
<source
src="/videos/Webvium%20-%20Lightweight,%20Fast,%20Material%20and%20Full-Featured%20Android%20Web%20Browser.mp4"
type="video/mp4">
Your browser does not support the video tag. Click play to watch it directly <a
href="/videos/Webvium%20-%20Lightweight,%20Fast,%20Material%20and%20Full-Featured%20Android%20Web%20Browser.mp4">Play</a>.
</video>
<div class="card-body">
<h5 class="card-title">Webvium <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/f7aa3bd8-bf4b-46f4-a0bb-57fa0cfb6287.svg"
alt="wakatime"></a></h5>
<p class="card-text">A Project that aims to be the lightest, fastest, secured, private and full-featured
android web browser. Programmed and design from Scratch.<br><small class="text-muted">Java, XML, Groovy,
JavaScript, HTML, CSS, JSON, SQLite, YML, Proguard, LeakCanary, Git, Github and Vercel</small></p>
<p>Stable: <br>
<a href="/webvium/">https://mrepol742.github.io/webvium</a>
</p>
<p>Beta: <br>
<a href="/webviumbeta/">https://mrepol742.github.io/webviumbeta</a>
</p>
<p>Dev: <br>
<a href="/webviumdev/">https://mrepol742.github.io/webviumdev</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/myportfolio.png" class="rounded mx-auto d-block img-fluid"
alt="Melvin Jones' Portfolio">
<div class="card-body">
<h5 class="card-title">Website <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/9458f437-f00b-4273-9cef-212b398ff055.svg"
alt="wakatime"></a></h5>
<p class="card-text">A website to showcase my skills, projects and to generate passive income using
advertisement. Maybe to find future clients too.<br><small class="text-muted">JavaScript, HTML, CSS, Bash,
Java, YML,
Bootstrap,
Material Icons,
Git, Github, Google Analytics, Google AdSense, Google Ad Manager, Google Search Console, Google Tag
Manager, Google Optimize,
Google Data Studio, Yandex Webmaster, Bing Webmaster, Bing IndexNow, Pinterest, RSS and
Simple Analytics</small></p>
<p>Source Code: <br>
<a
href="https://github.com/mrepol742/mrepol742.github.io">https://github.com/mrepol742/mrepol742.github.io</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/webviumsearch.png" class="rounded mx-auto d-block img-fluid"
alt="Webvium Search">
<div class="card-body">
<h5 class="card-title">Webvium Search</h5>
<p class="card-text">A Search Engine from Webvium Project that's currently under development progress. The
default homepage for the Webvium Browser with style.<br><small class="text-muted">JavaScript, HTML, CSS,
Bootstrap, JQuery, Git and Github</small> </p>
<p>Deployment: <br>
<a href="/search/">https://mrepol742.github.io/search</a>
</p>
<p>Source Code: <br>
<a
href="https://github.com/mrepol742/mrepol742.github.io">https://github.com/mrepol742/mrepol742.github.io</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<video class="rounded mx-auto d-block img-fluid" controls poster="/images/webviumvpn.png">
<source
src="/videos/Webvium%20VPN%20-%20Anonymous,%20Secured,%20Private%20and%20the%20fastest%20Virtual%20Private%20Network.mp4"
type="video/mp4">
Your browser does not support the video tag. Click play to watch it directly <a
href="/videos/Webvium%20VPN%20-%20Anonymous,%20Secured,%20Private%20and%20the%20fastest%20Virtual%20Private%20Network.mp4">Play</a>.
</video>
<div class="card-body">
<h5 class="card-title">Webvium VPN <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/6f406616-d468-4419-9d8f-67ed88f99e2e.svg"
alt="wakatime"></a></h5>
<p class="card-text">Inspired from Webvium, Webvium VPN is a lightweight android VPN app focuses in speed,
simplicity, security and privacy.<br><small class="text-muted">Java, XML, Git and Github</small></p>
<p>Deployment: <br>
<a href="/webviumvpn/">https://mrepol742.github.io/webviumvpn</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<video class="rounded mx-auto d-block img-fluid" controls poster="/images/ZeroTeaTime.png">
<source src="/videos/ZeroTeaTime.mp4" type="video/mp4">
Your browser does not support the video tag. Click play to watch it directly <a
href="/videos/ZeroTeaTime.mp4">Play</a>.
</video>
<div class="card-body">
<h5 class="card-title">Restaurant System <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/a56c94fb-2ad3-4cea-9d61-0314da530680.svg"
alt="wakatime"></a></h5>
<p class="card-text">This is a project for 1st year 1st sem on Computer Programming.<br><small
class="text-muted">C Programming Language, Git and Github</small></p>
<p>Source Code: <br>
<a
href="https://github.com/mrepol742/Mini-Restuarant-System">https://github.com/mrepol742/Mini-Restuarant-System</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<video class="rounded mx-auto d-block img-fluid" controls poster="/images/CRUD.png">
<source src="/videos/Crud.mp4" type="video/mp4">
Your browser does not support the video tag. Click play to watch it directly <a
href="/videos/Crud.mp4">Play</a>.
</video>
<div class="card-body">
<h5 class="card-title">CRUD <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/e39fc5c8-4eff-48f8-8115-8d1593f1eab3.svg"
alt="wakatime"></a></h5>
<p class="card-text">This is a project for 1st year 2nd sem on Computer Programming.<br><small
class="text-muted">C++ Programming Langauge, Git and Github</small></p>
<p>Source Code: <br>
<a href="https://github.com/mrepol742/CRUD-Project">https://github.com/mrepol742/CRUD-Project</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/terminal.png" class="rounded mx-auto d-block img-fluid" alt="Terminal"
width="550">
<div class="card-body">
<h5 class="card-title">Terminal <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/a428bb67-a8c9-4373-9398-e7c1a16fbe2c.svg"
alt="wakatime"></a></h5>
<p class="card-text">My interactive web based terminal made ^ JS.<br><small class="text-muted">JavaScript,
HTML, CSS, Git and Github</small></p>
<p>Live: <br>
<a href="https://mrepol742.me">https://mrepol742.me</a>
</p>
<p>Source Code: <br>
<a href="https://github.com/mrepol742/terminal">https://github.com/mrepol742/terminal</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<video class="rounded mx-auto d-block img-fluid" controls poster="/images/login-system.png">
<source src="/videos/login-system.mp4" type="video/mp4">
Your browser does not support the video tag. Click play to watch it directly <a
href="/videos/login-system.mp4">Play</a>.
</video>
<div class="card-body">
<h5 class="card-title">Login System <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/13ea9a71-2bc6-443e-b793-4d20a1930544.svg"
alt="wakatime"></a></h5>
<p class="card-text">A login system for my Computer Programming Activity.<br><small class="text-muted">PHP,
Bootstrap, HTML, CSS, JavaScript, Git and Github</small></p>
<p>Source Code: <br>
<a
href="https://github.com/mrepol742/login-crud-system-php">https://github.com/mrepol742/login-crud-system-php</a>
<a href="https://github.com/mrepol742/crud-php">https://github.com/mrepol742/crud-php</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/orion-banner.png" class="rounded mx-auto d-block img-fluid"
alt="Project Orion" width="550">
<div class="card-body">
<h5 class="card-title">Project Orion <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/82d84c4e-d541-4f9d-b30e-861e7a21efdb.svg"
alt="wakatime"></a></h5>
<p class="card-text">An AI that is trained to understand and respond to a wide range of commands and
requests. It can understand natural language, process complex data, and provide accurate and timely
responses. It can also learn from experiencers and adapt to new situations.<br><small
class="text-muted">JavaScript, NodeJS, JSON, HTML, CSS, Tailwind, Git and Github</small></p>
<p>Info: <br>
<a href="/project-orion/">https://mrepol742.github.io/project-orion</a>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/online-catering-system.png" class="rounded mx-auto d-block img-fluid"
alt="Online Catering System" width="550">
<div class="card-body">
<h5 class="card-title">Online Catering System <a href="https://wakatime.com/@mrepol742">
<img loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/48e92574-de8a-4db1-bc5f-b1e9bd444e20.svg"
alt="wakatime"></a></h5>
<p class="card-text">A Project for HCI Subject.<br><small class="text-muted">PHP, HTML, CSS, Bootstrap,
FontAwesome, Git and Github</small></p>
<p>Source Code: <br>
<a
href="https://github.com/mrepol742/Online-Catering-System">https://github.com/mrepol742/Online-Catering-System</a>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<div class="card-body">
<h5 class="card-title">Room Rental System <a
href="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/f15f68c0-6ae5-4a2e-978c-91318251b299"><img
loading="lazy"
src="https://wakatime.com/badge/user/8ad4afa2-1a56-40d1-a949-4663473915b6/project/f15f68c0-6ae5-4a2e-978c-91318251b299.svg"
alt="wakatime"></a></h5>
<p class="card-text">Information and source code will be open source and disclosed once the project finish
and passed to professor.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<div class="card-body">
<h5 class="card-title">Chatbot</h5>
<p class="card-text">Information and source code will be open source and disclosed once the project finish
and passed to professor.</p>
</div>
</div>
</div>
</div>
<br>
<h2 class="text-center" id="skills">Skills</h2><br>
<div class="row">
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/androidstudio.jpg" class="rounded mx-auto d-block img-fluid"
alt="Software Engineering" width="800">
<div class="card-body">
<h5 class="card-title">Software Engineering</h5>
<p class="card-text">It's a field of engineering that i used for development and maintenance of software
systems. It involves the application of engineering principles and techniques to the design, development,
testing, and maintenance of software. <br><br>With software engineering, i can create efficient and
reliable software solutions that meet customer needs. Additionally, software engineering also involves the
use of various tools and technologies to ensure the quality and performance of the software.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/visualstudio.jpg" class="rounded mx-auto d-block img-fluid"
alt="Web Development" width="800">
<div class="card-body">
<h5 class="card-title">Web Development</h5>
<p class="card-text">As a web developer, I have experience in creating dynamic websites and web applications
using HTML, CSS, JavaScript, and other web development frameworks.<br><br> I am proficient in developing
user-friendly and responsive web designs that are optimized for various devices and browsers. I have a
strong understanding of web development principles and best practices, and I am able to troubleshoot and
debug web applications.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/seo.jpg" class="rounded mx-auto d-block img-fluid" alt="SEO" width="800">
<div class="card-body">
<h5 class="card-title">SEO</h5>
<p class="card-text">It's a process I use for web development, like on this one, which involves optimizing
websites to rank higher in search engine results. In SEO it involves optimizing content, website
structure, and other elements to make sure that search engines can easily find and index a website or a
page.
<br><br>It is important part of digital marketing, as it helps to increase website visibility and drive
more organic traffic to a website.
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/chs.jpg" class="rounded mx-auto d-block img-fluid"
alt="Computer Hardware & Software" width="800">
<div class="card-body">
<h5 class="card-title">Computer Hardware & Software</h5>
<p class="card-text">I have experience in computer hardware and software, which includes assembling,
troubleshooting, and repairing of computer systems. I am knowledgeable in the installation and
configuration of operating systems, software applications, and hardware components.
<br><br> And also proficient in the use of various software tools and technologies to optimize computer
performance and ensure system security.
</p>
</div>
</div>
</div>
</div>
<br>
<h2 class="text-center" id="education">Education</h2><br>
<div class="row">
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/bestlinkcollegeofthephilippines.png"
class="rounded mx-auto d-block img-fluid" alt="Beslink College of the Philippines" width="250"
style="padding: 10%;">
<div class="card-body">
<h5 class="card-title">Bestlink College of the Philippines</h5>
<p class="card-text">Bachelor of Science in Information Technology</p>
<p class="card-text"><small class="text-muted">2021-now</small>
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/southeasteasiainstitueoftradeandtechnology.jpeg"
class="rounded mx-auto d-block img-fluid" alt="South East Asia Institute of Trading and Technology"
width="250" style="padding: 10%;">
<div class="card-body">
<h5 class="card-title">South East Asia Institute of Trade and Technology</h5>
<p class="card-text">Information Communication Technology</p>
<p class="card-text"><small class="text-muted">2018-2020</small></p>
</div>
</div>
</div>
</div>
<br>
<h2 class="text-center" id="workexp">Work Experience</h2><br>
<div class="row">
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/mrepol742.png" class="rounded mx-auto d-block img-fluid"
alt="Melvin Jones Repol Card" width="550">
<div class="card-body">
<h5 class="card-title">Freelancer</h5>
<p class="card-text">Software Developer & Web Developer</p>
<p class="card-text"><small class="text-muted">2021-present</small></p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card ">
<img loading="lazy" src="/images/southeasteasiainstitueoftradeandtechnology.jpeg"
class="rounded mx-auto d-block img-fluid" alt="South East Asia Institute of Trading and Technology"
width="250" style="padding: 10%;">
<div class="card-body">
<h5 class="card-title">South East Asia Institute of Trade and Technology</h5>
<p class="card-text">On the Job Training (OJT)</p>
<p class="card-text"><small class="text-muted">60 Hours</small></p>
</div>
</div>
</div>
</div>
<br>
<h2 class="text-center" id="contact">If you have an enquiries, please feel free to contact me via: <br>
<a href="mailto:[email protected]">[email protected]</a> <br></h2>
<br>
<h2 class="text-center" id="friends">Friends</h2><br>
<div class="card-group">
<div class="card asd " id="samiunnafis" style="border-radius: 10px;">
<img loading="lazy" src="https://avatars.githubusercontent.com/u/56390452?v=4" style="padding-top: 50px;"
class="rounded mx-auto d-block img-fluid circle-png" alt="Samiun Nafis avatar at Github" width="150">
<div class="card-body">
<p class="card-text">Samiun Nafis is a talented Front-end Developer who is passionate about learning and
mastering React. He is dedicated to continuously improving his skills and knowledge.</p>
<p class="card-text"><small class="text-muted">@samiunnafis</small></p>
<a href="https://samiunnafis.github.io/" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Samiun's portfolio</title>
<path fill="currentColor"
d="M16.36,14C16.44,13.34 16.5,12.68 16.5,12C16.5,11.32 16.44,10.66 16.36,10H19.74C19.9,10.64 20,11.31 20,12C20,12.69 19.9,13.36 19.74,14M14.59,19.56C15.19,18.45 15.65,17.25 15.97,16H18.92C17.96,17.65 16.43,18.93 14.59,19.56M14.34,14H9.66C9.56,13.34 9.5,12.68 9.5,12C9.5,11.32 9.56,10.65 9.66,10H14.34C14.43,10.65 14.5,11.32 14.5,12C14.5,12.68 14.43,13.34 14.34,14M12,19.96C11.17,18.76 10.5,17.43 10.09,16H13.91C13.5,17.43 12.83,18.76 12,19.96M8,8H5.08C6.03,6.34 7.57,5.06 9.4,4.44C8.8,5.55 8.35,6.75 8,8M5.08,16H8C8.35,17.25 8.8,18.45 9.4,19.56C7.57,18.93 6.03,17.65 5.08,16M4.26,14C4.1,13.36 4,12.69 4,12C4,11.31 4.1,10.64 4.26,10H7.64C7.56,10.66 7.5,11.32 7.5,12C7.5,12.68 7.56,13.34 7.64,14M12,4.03C12.83,5.23 13.5,6.57 13.91,8H10.09C10.5,6.57 11.17,5.23 12,4.03M18.92,8H15.97C15.65,6.75 15.19,5.55 14.59,4.44C16.43,5.07 17.96,6.34 18.92,8M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://github.com/samiunnafis" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Samiun's github</title>
<path fill="currentColor"
d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://linkedin.com/in/samiunnafis" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Samiun's linkedin</title>
<path fill="currentColor"
d="M19 3A2 2 0 0 1 21 5V19A2 2 0 0 1 19 21H5A2 2 0 0 1 3 19V5A2 2 0 0 1 5 3H19M18.5 18.5V13.2A3.26 3.26 0 0 0 15.24 9.94C14.39 9.94 13.4 10.46 12.92 11.24V10.13H10.13V18.5H12.92V13.57C12.92 12.8 13.54 12.17 14.31 12.17A1.4 1.4 0 0 1 15.71 13.57V18.5H18.5M6.88 8.56A1.68 1.68 0 0 0 8.56 6.88C8.56 5.95 7.81 5.19 6.88 5.19A1.69 1.69 0 0 0 5.19 6.88C5.19 7.81 5.95 8.56 6.88 8.56M8.27 18.5V10.13H5.5V18.5H8.27Z" />
</svg>
</a>
</div>
</div>
<div class="card asd " id="imbharat420" style="border-radius: 10px;">
<img loading="lazy" src="https://avatars.githubusercontent.com/u/51924618?v=4" style="padding-top: 50px;"
class="rounded mx-auto d-block img-fluid circle-png" alt="Bharat Singh avatar at Github" width="150">
<div class="card-body">
<p class="card-text">Bharat Singh is an experienced professional with expertise in front-end and back-end. He
is passionate about using technology to solve real-world problems.</p>
<p class="card-text"><small class="text-muted">@imbharat420</small></p>
<a href="https://bharat.bargali.me/" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Bharat's portfolio</title>
<path fill="currentColor"
d="M16.36,14C16.44,13.34 16.5,12.68 16.5,12C16.5,11.32 16.44,10.66 16.36,10H19.74C19.9,10.64 20,11.31 20,12C20,12.69 19.9,13.36 19.74,14M14.59,19.56C15.19,18.45 15.65,17.25 15.97,16H18.92C17.96,17.65 16.43,18.93 14.59,19.56M14.34,14H9.66C9.56,13.34 9.5,12.68 9.5,12C9.5,11.32 9.56,10.65 9.66,10H14.34C14.43,10.65 14.5,11.32 14.5,12C14.5,12.68 14.43,13.34 14.34,14M12,19.96C11.17,18.76 10.5,17.43 10.09,16H13.91C13.5,17.43 12.83,18.76 12,19.96M8,8H5.08C6.03,6.34 7.57,5.06 9.4,4.44C8.8,5.55 8.35,6.75 8,8M5.08,16H8C8.35,17.25 8.8,18.45 9.4,19.56C7.57,18.93 6.03,17.65 5.08,16M4.26,14C4.1,13.36 4,12.69 4,12C4,11.31 4.1,10.64 4.26,10H7.64C7.56,10.66 7.5,11.32 7.5,12C7.5,12.68 7.56,13.34 7.64,14M12,4.03C12.83,5.23 13.5,6.57 13.91,8H10.09C10.5,6.57 11.17,5.23 12,4.03M18.92,8H15.97C15.65,6.75 15.19,5.55 14.59,4.44C16.43,5.07 17.96,6.34 18.92,8M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://github.com/imbharat420/" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Bharat's github</title>
<path fill="currentColor"
d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
</div>
</div>
<div class="card asd " id="emejulucodes" style="border-radius: 10px;">
<img loading="lazy" src="https://avatars.githubusercontent.com/u/54607888?v=4" style="padding-top: 50px;"
class="rounded mx-auto d-block img-fluid circle-png" alt="Emmanuel Emejulu avatar at Github" width="150">
<div class="card-body">
<p class="card-text">Emmanuel Emejulu is a highly experienced web and mobile app developer with expertise in a
wide range of technologies. He is currently employed at a leading app development company, where he is
working on innovative projects.</p>
<p class="card-text"><small class="text-muted">@emejulucodes</small></p>
<a href="https://emejulucodes.dev/" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Emmanuel's portfolio</title>
<path fill="currentColor"
d="M16.36,14C16.44,13.34 16.5,12.68 16.5,12C16.5,11.32 16.44,10.66 16.36,10H19.74C19.9,10.64 20,11.31 20,12C20,12.69 19.9,13.36 19.74,14M14.59,19.56C15.19,18.45 15.65,17.25 15.97,16H18.92C17.96,17.65 16.43,18.93 14.59,19.56M14.34,14H9.66C9.56,13.34 9.5,12.68 9.5,12C9.5,11.32 9.56,10.65 9.66,10H14.34C14.43,10.65 14.5,11.32 14.5,12C14.5,12.68 14.43,13.34 14.34,14M12,19.96C11.17,18.76 10.5,17.43 10.09,16H13.91C13.5,17.43 12.83,18.76 12,19.96M8,8H5.08C6.03,6.34 7.57,5.06 9.4,4.44C8.8,5.55 8.35,6.75 8,8M5.08,16H8C8.35,17.25 8.8,18.45 9.4,19.56C7.57,18.93 6.03,17.65 5.08,16M4.26,14C4.1,13.36 4,12.69 4,12C4,11.31 4.1,10.64 4.26,10H7.64C7.56,10.66 7.5,11.32 7.5,12C7.5,12.68 7.56,13.34 7.64,14M12,4.03C12.83,5.23 13.5,6.57 13.91,8H10.09C10.5,6.57 11.17,5.23 12,4.03M18.92,8H15.97C15.65,6.75 15.19,5.55 14.59,4.44C16.43,5.07 17.96,6.34 18.92,8M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://github.com/emejulucodes" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Emmanuel's github</title>
<path fill="currentColor"
d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
</div>
</div>
</div>
<div class="card-group">
<div class="card asd " id="aaveshdev" style="border-radius: 10px;">
<img loading="lazy" src="https://avatars.githubusercontent.com/u/50949867?v=4" style="padding-top: 50px;"
class="rounded mx-auto d-block img-fluid circle-png" alt="Aavesh Jilani avatar at Github" width="150">
<div class="card-body">
<p class="card-text">Aavesh Jilani is a renowned software engineer and has been credited for his work on the
Dragon Programming Language, Suasive and Citrine Programming Language. He is also a co-author of the Citrine
Programming Language.
</p>
<p class="card-text"><small class="text-muted">@aaveshdev</small></p>
<a href="https://aavesh.dragon-lang.org/" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Aavesh's portfolio</title>
<path fill="currentColor"
d="M16.36,14C16.44,13.34 16.5,12.68 16.5,12C16.5,11.32 16.44,10.66 16.36,10H19.74C19.9,10.64 20,11.31 20,12C20,12.69 19.9,13.36 19.74,14M14.59,19.56C15.19,18.45 15.65,17.25 15.97,16H18.92C17.96,17.65 16.43,18.93 14.59,19.56M14.34,14H9.66C9.56,13.34 9.5,12.68 9.5,12C9.5,11.32 9.56,10.65 9.66,10H14.34C14.43,10.65 14.5,11.32 14.5,12C14.5,12.68 14.43,13.34 14.34,14M12,19.96C11.17,18.76 10.5,17.43 10.09,16H13.91C13.5,17.43 12.83,18.76 12,19.96M8,8H5.08C6.03,6.34 7.57,5.06 9.4,4.44C8.8,5.55 8.35,6.75 8,8M5.08,16H8C8.35,17.25 8.8,18.45 9.4,19.56C7.57,18.93 6.03,17.65 5.08,16M4.26,14C4.1,13.36 4,12.69 4,12C4,11.31 4.1,10.64 4.26,10H7.64C7.56,10.66 7.5,11.32 7.5,12C7.5,12.68 7.56,13.34 7.64,14M12,4.03C12.83,5.23 13.5,6.57 13.91,8H10.09C10.5,6.57 11.17,5.23 12,4.03M18.92,8H15.97C15.65,6.75 15.19,5.55 14.59,4.44C16.43,5.07 17.96,6.34 18.92,8M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://github.com/aaveshdev" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Aavesh's github</title>
<path fill="currentColor"
d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
</div>
</div>
<div class="card asd " id="amosayomide05" style="border-radius: 10px;">
<img loading="lazy" src="https://avatars.githubusercontent.com/u/62471060?v=4" style="padding-top: 50px;"
class="rounded mx-auto d-block img-fluid circle-png" alt="Amos Ayomide avatar at Github" width="150">
<div class="card-body">
<p class="card-text">Amos Ayomide is a highly skilled programmer who has a passion for web development. He has
been teaching himself programming since high school and is now working towards a degree in computer science.
</p>
<p class="card-text"><small class="text-muted">@amosayomide05</small></p>
<a href="https://amosayomide05.github.io/" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Amos's portfolio</title>
<path fill="currentColor"
d="M16.36,14C16.44,13.34 16.5,12.68 16.5,12C16.5,11.32 16.44,10.66 16.36,10H19.74C19.9,10.64 20,11.31 20,12C20,12.69 19.9,13.36 19.74,14M14.59,19.56C15.19,18.45 15.65,17.25 15.97,16H18.92C17.96,17.65 16.43,18.93 14.59,19.56M14.34,14H9.66C9.56,13.34 9.5,12.68 9.5,12C9.5,11.32 9.56,10.65 9.66,10H14.34C14.43,10.65 14.5,11.32 14.5,12C14.5,12.68 14.43,13.34 14.34,14M12,19.96C11.17,18.76 10.5,17.43 10.09,16H13.91C13.5,17.43 12.83,18.76 12,19.96M8,8H5.08C6.03,6.34 7.57,5.06 9.4,4.44C8.8,5.55 8.35,6.75 8,8M5.08,16H8C8.35,17.25 8.8,18.45 9.4,19.56C7.57,18.93 6.03,17.65 5.08,16M4.26,14C4.1,13.36 4,12.69 4,12C4,11.31 4.1,10.64 4.26,10H7.64C7.56,10.66 7.5,11.32 7.5,12C7.5,12.68 7.56,13.34 7.64,14M12,4.03C12.83,5.23 13.5,6.57 13.91,8H10.09C10.5,6.57 11.17,5.23 12,4.03M18.92,8H15.97C15.65,6.75 15.19,5.55 14.59,4.44C16.43,5.07 17.96,6.34 18.92,8M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://github.com/amosayomide05" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Amo's github</title>
<path fill="currentColor"
d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
</div>
</div>
<div class="card asd " id="0x3ef8" style="border-radius: 10px;">
<img loading="lazy" src="https://avatars.githubusercontent.com/u/76643867?v=4" style="padding-top: 50px;"
class="rounded mx-auto d-block img-fluid circle-png" alt="Jay Patrick Cano avatar at Github" width="150">
<div class="card-body">
<p class="card-text">Jay Patrick Cano is a highly motivated individual who is passionate about programming and
web development. He has been working on various projects and has achieved great success in his endeavors.
</p>
<p class="card-text"><small class="text-muted">@0x3ef8</small></p>
<a href="https://0x3ef8.github.io/" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Jay Patrick's portfolio</title>
<path fill="currentColor"
d="M16.36,14C16.44,13.34 16.5,12.68 16.5,12C16.5,11.32 16.44,10.66 16.36,10H19.74C19.9,10.64 20,11.31 20,12C20,12.69 19.9,13.36 19.74,14M14.59,19.56C15.19,18.45 15.65,17.25 15.97,16H18.92C17.96,17.65 16.43,18.93 14.59,19.56M14.34,14H9.66C9.56,13.34 9.5,12.68 9.5,12C9.5,11.32 9.56,10.65 9.66,10H14.34C14.43,10.65 14.5,11.32 14.5,12C14.5,12.68 14.43,13.34 14.34,14M12,19.96C11.17,18.76 10.5,17.43 10.09,16H13.91C13.5,17.43 12.83,18.76 12,19.96M8,8H5.08C6.03,6.34 7.57,5.06 9.4,4.44C8.8,5.55 8.35,6.75 8,8M5.08,16H8C8.35,17.25 8.8,18.45 9.4,19.56C7.57,18.93 6.03,17.65 5.08,16M4.26,14C4.1,13.36 4,12.69 4,12C4,11.31 4.1,10.64 4.26,10H7.64C7.56,10.66 7.5,11.32 7.5,12C7.5,12.68 7.56,13.34 7.64,14M12,4.03C12.83,5.23 13.5,6.57 13.91,8H10.09C10.5,6.57 11.17,5.23 12,4.03M18.92,8H15.97C15.65,6.75 15.19,5.55 14.59,4.44C16.43,5.07 17.96,6.34 18.92,8M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
<a href="https://github.com/0x3ef8" style="padding-left: 5px; padding-right: 5px;" target="_blank">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<title>Jay Patrick's github</title>
<path fill="currentColor"
d="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</svg>
</a>
</div>
</div>
</div>
<br><br><br>
<div class="text-center" id="newsletter">
<h2>Learn What's Coming Next</h2>
<p>Subscribe for my newsletter and learn when i release new projects.</p>
<div class="container" style="width: 60%;">
<form action="https://formspree.io/f/xbjerlpg" method="post">
<div class="mb-3"><input class="form-control" type="email" name="email" placeholder="Email"
style="padding: 2%;"></div>
<div class="mb-3"><button class="btn btn-primary shadow d-block w-100" type="submit"
name="submit">Join</button></div>
</form>
</div>
</div>
<br>
<h5 class="text-center">advertisement</h5><br>
<div>
</div>
<br>
<h2 class="text-center" id="faq">Faq</h2><br>
<div class="accordion " id="accordion-faq">
<div class="accordion-item">
<h2 class="accordion-header" id="panelsStayOpen-headingOne232323m">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#panelsStayOpen-collapseOne232323m" aria-expanded="true"
aria-controls="panelsStayOpen-collapseOne232323m">
What are my projects?
</button>
</h2>
<div id="panelsStayOpen-collapseOne232323m" class="accordion-collapse collapse show"
aria-labelledby="panelsStayOpen-headingOne232323m">
<div class="accordion-body">
<h3>Projects:</h3>
<ul>
<li>Webvium</li>
<li>My Portfolio</li>
<li>Webvium Search</li>
<li>Webvium VPN</li>
<li>Restaurant System</li>
<li>CRUD</li>
<li>Terminal</li>
<li>Login System</li>
<li>Project Orion</li>
<li>Online Catering System</li>
<li>Room Rental System</li>
<li>Chatbot</li>
</ul>
<p>View my github repository to see more.<br><a
href="https://github.com/mrepol742">https://github.com/mrepol742</a></p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="panelsStayOpen-headingOne232323m12">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#panelsStayOpen-collapseOne232323m12" aria-expanded="true"
aria-controls="panelsStayOpen-collapseOne232323m12">
What language i mostly used?
</button>
</h2>
<div id="panelsStayOpen-collapseOne232323m12" class="accordion-collapse collapse"
aria-labelledby="panelsStayOpen-headingOne232323m12">
<div class="accordion-body">
<h3>Languages:</h3>
<ol>
<li>Java</li>
<li>JavaScript</li>
<li>CSS</li>