-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
736 lines (701 loc) · 41.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Asap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Unna">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Assistant">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source%20Sans%20Pro">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<title>Jonas' Web Portfolio</title>
</head>
<body>
<div class="nav-overlay">
<button type="button" id="closeNav"></button>
<img id="navImg" />
</div>
<main class="main-body">
<section class="profile-container">
<div class="profile-card">
<section class="image-container">
<img src="Website Portfolio/Pictures/shesh.jpg" />
</section>
<section class="profile-credentials">
<h1>Jonas Anthony Adaoag</h1>
<p style="text-align: center;">A good worker with a thirst for knowledge</p>
<article>
<p>Charismatic, cool, and with</p>
<p>a drive to learn the right</p>
<p>things for the right moment</p>
</article>
<ul class="profile-contacts">
<li><h5>CONTACT ME</h5></li>
<li><h5>| VDC, La Mesa, Calamba City, Laguna</h5></li>
<li><h5>| (+63)999 769 9439</h5></li>
<li><h5>| [email protected]</h5></li>
<li><h5>| [email protected]</h5></li>
</ul>
<hr class="divider" />
<div class="profile-hexagons">
<a href="https://www.facebook.com/JonsDogg/"><i class="fa-brands fa-facebook-f"></i></a>
<a href="https://www.linkedin.com/in/jonas-anthony-adaoag-245b46236/"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</section>
</div>
</section>
<nav class="mid-navbar">
<section class="navbar-container">
<div><a id="hmBttn">Home</a></div>
<div><a id="prjBttn">Personal Projects</a></div>
<!--<div><a id="srvBttn">C. Vitae</a></div>-->
<div><a id="appBttn">Contact Me</a></div>
</section>
</nav>
<seciton id="change-tab">
<!-- DOWNLOAD CONTENT -->
<section
class="proj-container srv"
style="border-bottom: 10px solid lightgray;">
<div>
<h1>Curriculum Vitae / Resume</h1>
<div class="cv-handler">
<button type="button" id="dwldCV">Download</button>
</div>
</div>
</section>
<!-- Background Tab Starts Here -->
<div id="bckgrnd-tab" class="tab current">
<!-- INTRODUCTION -->
<section class="section-card">
<div class="title-container">
Introduction
</div>
<div class="text-container">
<span>
My name Jonas Anthony Adaoag is currently
in his last year of Information Technology in
Malayan Colleges Laguna.
</span>
<span>
I have experience in creating web application,
working in agile groups, building mobile apps
for entertainment and sometimes in-tandem with a web service.
</span>
<span>
I also have sufficient knowledge in numerous
programming languages, ranging from general-use,
like Python, to database management, like PHP.
</span>
</div>
</section>
<!-- EDUCATION -->
<section class="section-card">
<div class="title-container" style="letter-spacing: 4px;">
Education
</div>
<div class="text-container">
<table>
<tr>
<td colspan="3">Colegio De San Juan De Letran</td>
</tr>
<tr>
<td>Junior High</td>
<td> </td>
<td>2012-2015</td>
</tr>
</table>
<table>
<tr>
<td colspan="3">Colegio De San Juan De Letran</td>
</tr>
<tr>
<td>Senior High</td>
<td> </td>
<td>2016-2018</td>
</tr>
</table>
<table>
<tr>
<td colspan="3">Malayan Colleges Laguna -MCL</td>
</tr>
<tr>
<td>Bachelor Graduate IT</td>
<td> </td>
<td>2018-2023</td>
</tr>
</table>
</div>
</section>
<!-- SKILLS -->
<section class="section-card">
<div class="title-container">
Skills
</div>
<div class="text-container skills">
<div class="up-col">
<h4>Good</h4>
<ul>
<li>HTML, CSS, JS</li>
<li>Visual Studio 2019 (C#)</li>
<li>Bulma CSS</li>
<li>Bootstrap CSS</li>
<li>JQuery</li>
<li>MySQL, MSSQL</li>
</ul>
</div>
<div class="low-col">
<h4>Experience</h4>
<ul>
<li>C++</li>
<li>Python</li>
<li>Arduino Programming</li>
<li>Wemos Programming</li>
<li>Xamarin Mobile Development</li>
<li>Android Studio</li>
</ul>
</div>
<div class="merge-col">
<h4>General</h4>
<ul>
<li>Photo/Video Editing</li>
<li>Microsoft Office Literate</li>
<li>Web Development</li>
<li>Database Management</li>
<li>Mobile App Development</li>
<li>Microcontroller Programming</li>
<li>Internet of Things (IoT)</li>
<li>Agile Methodology</li>
<li>Decision Making</li>
<li>Critical Thinking</li>
<li>Creative Thinking</li>
</ul>
</div>
</div>
</section>
<hr class="divider" />
<!-- WORK EXPERIENCCE HERE 10/02/2024 -->
<section class="section-card"
style="margin: 0;
flex-direction: column;">
<div class="title-container"
style="width: 100%;
text-align: center;
border-bottom: 5px black solid">
Work Experience
</div>
<section class="work proj-container">
<div>
<h1>SERCOMM Philippines</h1>
</div>
<div>
<div class="text-container skills"
style="width: 100%;">
<div class="merge-col" style="display: flex; flex-direction: column;">
<b>SERCOMM Philippines</b> is a subsidiary of SERCOMM Corporation, specializing in telecommunications and networking solutions.
<br />
<br />
It is known for designing and manufacturing routers, modems, gateways, and other networking equipment. With a focus on innovation and quality, SERCOMM Philippines contributes to the advancement of telecommunications technology globally.
<br />
<br />
<div class="project-description">
<h4>Job History</h4>
<table style="color: black; border-bottom: black solid; width: 100%;">
<tr>
<td style="text-align: left;">Assistant IT Specialist</td>
<td> </td>
<td style="text-align: right;">2023-Present</td>
</tr>
</table>
</div>
</div>
<div class="up-col" style="height: fit-content; color: black; text-align: right;">
<h3 style="margin: 0;">Web Stack</h3>
<span class="badges" style="background-color: #F16529;">HTML</span>
<span class="badges" style="color: white; background-color: #2965F1;">FineReport</span>
<span class="badges" style="background-color: #E4A126;">JavaScript</span>
<span class="badges" style="color: #000000; background-color: #E4A126;">JQuery</span>
<span class="badges" style="color: white; background-color: #D52923;">MSSQL</span>
</div>
<div class="low-col" style="color: black; text-align: right;">
<h3 style="margin: 0;">Skills Developed</h3>
<ul style="font-size: 20px;">
<li><b>FineReport</b></li>
<li>Data Presentation</li>
<li>Database Management</li>
<li>P-SQL and T-SQL</li>
<li><b>Project Development Flow</b></li>
<li>BASIC DOM Manipualtion using JS and JQuery</li>
</ul>
</div>
</div>
</div>
</section>
</section>
<hr class="divider"
style="margin-bottom: 20px;" />
<!-- WORK EXPERIENCE ENDS HERE -->
<section class="section-card" style="margin: 0; flex-direction: column;">
<div class="cert">
<div>
<img id="img-1" class="crt-img" src="Website Portfolio/Pictures/webinar certificates/trend-micro.png" />
<article>
<span id="1">Trend Micro: Career of Cybersecurity</span>
</article>
</div>
<div>
<img id="img-2" class="crt-img" src="Website Portfolio/Pictures/webinar certificates/blockchain-cloud.jpg" />
<article>
<span id="2">Tech Talk: Blockchain & Cloud</span>
</article>
</div>
<div>
<img id="img-3" class="crt-img" src="Website Portfolio/Pictures/webinar certificates/robotics-machine-intelligence.jpg" />
<article>
<span id="3">Tech Talk: Robotics & Machine Intelligence</span>
</article>
</div>
</div>
<div class="cert">
<div>
<img id="img-4" class="crt-img" src="Website Portfolio/Pictures/webinar certificates/nezda.jpg" />
<article>
<span id="4">Nezda Participation</span>
</article>
</div>
<div>
<img id="img-5" class="crt-img" src="Website Portfolio/Pictures/webinar certificates/UX-MCL.jpg" />
<article>
<span id="5">UXPH: User Experience</span>
</article>
</div>
<div>
<img id="img-6" class="crt-img" src="Website Portfolio/Pictures/webinar certificates/compTia.jpg" />
<article>
<span id="6">MCL-CompTIA</span>
</article>
</div>
</div>
<div class="cert">
<div>
<img id="img-7" class="crt-img" src="Website Portfolio/Pictures/webinar certificates/mapua.jpg" />
<article>
<span id="7">Mapua Participation</span>
</article>
</div>
</div>
</section>
<hr class="divider" style="margin: 20px auto;"/>
</div>
<!-- Project Tab Starts Here -->
<div id="prjct-tab" class="tab current">
<section class="proj-container">
<div class="background-proj">
</div>
<article class="proj-text-container" style="float: right; margin-right: 20px;">
<h1 style="text-align: right;">Lion Express</h1>
<div>
<span class="badges" style="background-color: #F16529;">HTML</span>
<span class="badges" style="background-color: #2965F1;">CSS</span>
<span class="badges" style="background-color: #E4A126;">JavaScript</span>
<span class="badges" style="color: #000000; background-color: #7377AD;">PHP</span>
<span class="badges" style="color: #000000; background-color: #F37623;">XAMPP</span>
<span class="badges" style="color: #F7CC40; background-color: #33648C; border: 1px solid white">Python MVC</span>
<span class="badges" style="background-color: #41D384;">Android Studio</span>
</div>
<div class="project-description">
A system made for banking-oriented businesses that allows its users, both bank employees/staffs and customers, to do transactions with
Lion Express via the banking main website.
</div>
<div class="carousel"
data-flickity='{ "wrapAround": true, "prevNextButtons": false,
"pageDots": false }'>
<img class="carousel-cell" src="Website Portfolio/Pictures/lion-express/LE-1.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/lion-express/LE-2.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/lion-express/LE-3.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/lion-express/LE-4.jpg" />
</div>
<a onclick="window.open('Lion Express/LionExpressWeb.html');" ontouchend="window.open('Lion Express/LionExpressWeb.html');">Open Website in New Tab</a>
</article>
</section>
<section class="proj-container">
<div class="background-proj">
</div>
<article class="proj-text-container" style="float: left; margin-left: 20px;">
<h1>BitMiner</h1>
<div>
<span class="badges" style="background-color: #F16529;">HTML</span>
<span class="badges" style="background-color: #2965F1;">CSS</span>
<span class="badges" style="color: white; background-color: #37008E;">C#</span>
<span class="badges" style="color: #000000; background-color: #1379BB;">ASP.Net</span>
<span class="badges" style="color: #000000; background-color: #7377AD;">PHP</span>
<span class="badges" style="color: #000000; background-color: #F37623;">XAMPP</span>
<span class="badges" style="color: #000000; background-color: #008F94; border: 1px solid white;">Arduino</span>
<span class="badges" style="color: #000000; background-color: #0463A3; border: 1px solid white;">WeMos</span>
<span class="badges" style="color: #000000; background-color: #798DF2; border: 1px solid white;">Internet of Things</span>
</div>
<div class="project-description">
<p style="font-style: italic;">"Efficiency above all else"</p>
This IoT (Internet of Things) system provides its user real-time tracking of their devices
temps. and humidity, activities, and operational status via a dashboard that
was uploaded and accessible in the web.
</div>
<div class="carousel"
data-flickity='{ "wrapAround": true, "prevNextButtons": false,
"pageDots": false }'>
<img class="carousel-cell" src="Website Portfolio/Pictures/bit-miner/BM-1.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/bit-miner/BM-2.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/bit-miner/BM-3.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/bit-miner/BM-4.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/bit-miner/BM-5.jpg" />
</div>
</article>
</section>
<section class="proj-container">
<div class="background-proj">
</div>
<article class="proj-text-container" style="float: right; margin-right: 20px;">
<h1 style="text-align: right;">FishCare</h1>
<div>
<span class="badges" style="background-color: #F16529;">HTML</span>
<span class="badges" style="background-color: #2965F1;">CSS</span>
<span class="badges" style="background-color: #E4A126;">JavaScript</span>
<span class="badges" style="background-color: #41D384;">Android Studio</span>
<span class="badges" style="color: #000000; background-color: #7377AD;">PHP</span>
<span class="badges" style="color: #000000; background-color: #F37623;">XAMPP</span>
<span class="badges" style="color: #000000; background-color: #008F94; border: 1px solid white;">Arduino</span>
<span class="badges" style="color: #000000; background-color: #0463A3; border: 1px solid white;">WeMos</span>
<span class="badges" style="color: #000000; background-color: #798DF2; border: 1px solid white;">Internet of Things</span>
</div>
<div class="project-description">
An application made for fish lovers that utilizes IoT (Internet of Things)
technology to keep track of the water conditions, environment, and temps. of
an aquarium. Data were then processed and shown using a web application.
</div>
<div class="carousel"
data-flickity='{ "wrapAround": true, "prevNextButtons": false,
"pageDots": false }'>
<img class="carousel-cell" src="Website Portfolio/Pictures/fish-care/FCare-1.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/fish-care/FCare-2.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/fish-care/FCare-3.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/fish-care/FCare-4.jpg" />
</div>
</article>
</section>
<section class="proj-container">
<div class="background-proj">
</div>
<article class="proj-text-container" style="float: left; margin-left: 20px;">
<h1>TTS: Tortor's Transport Service</h1>
<div>
<span class="badges" style="background-color: #F16529;">HTML</span>
<span class="badges" style="background-color: #2965F1;">CSS</span>
<span class="badges" style="color: #F2F2F2; background-color: #6D11EA; text-shadow: 1px 1px black;">Bootstrap 5 CSS</span>
<span class="badges" style="background-color: #E4A126;">JavaScript</span>
<span class="badges" style="color: white; background-color: #37008E;">C#</span>
<span class="badges" style="color: #000000; background-color: #1379BB;">ASP.Net</span>
<span class="badges" style="color: #000000; background-color: #D52923;">MSSQL</span>
<span class="badges" style="background-color: #41D384;">Android Studio</span>
</div>
<div class="project-description">
A cross platform application that has its respective interface and function in
both web and mobile devices. Tortor Transport Service provides the hosted company
their own management system where they can keep track of incoming orders, ongoing deliveries,
delivery status, inventory for products, and many more.
</div>
<div class="carousel TTS"
data-flickity='{ "wrapAround": true, "prevNextButtons": false,
"pageDots": false }'>
<img class="carousel-cell" src="Website Portfolio/Pictures/tortor-express/TTS-1.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/tortor-express/TTS-2.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/tortor-express/TTS-3.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/tortor-express/TTS-4.jpg" />
</div>
<a onclick="window.open('TDMS/TTS-Homepage.html');" ontouchend="window.open('TDMS/TTS-Homepage.html');">Open Website in New Tab</a>
</article>
</section>
<section class="proj-container">
<div class="background-proj">
</div>
<article class="proj-text-container" style="float: right; margin-right: 20px;">
<h1 style="text-align: right;">Pseudo Flow: AWET</h1>
<div>
<span class="badges" style="background-color: #F16529;">HTML</span>
<span class="badges" style="background-color: #2965F1;">CSS</span>
<span class="badges" style="color: #F2F2F2; background-color: #6D11EA; text-shadow: 1px 1px black;">Bootstrap 5 CSS</span>
<span class="badges" style="background-color: #E4A126;">JavaScript</span>
<span class="badges" style="color: #F2F2F2; background-color: #121A26;">JQuery</span>
<span class="badges" style="color: white; background-color: #37008E;">C#</span>
<span class="badges" style="color: #000000; background-color: #1379BB;">ASP.Net</span>
<span class="badges" style="color: #000000; background-color: #F37623;">XAMPP</span>
<span class="badges" style="color: #D88700; background-color: #005C83; text-shadow: 1px 1px black;">MySQL</span>
</div>
<div class="project-description">
A web application that aims to supplement the teaching of Program Logic Formulation
or PLF by providing both students and instructors a platform to learn and teach; and to excel.
Its worth noting that this web application can become an LMS once it branches out to other fields other than PLF.
</div>
<div class="carousel"
data-flickity='{ "wrapAround": true, "prevNextButtons": false,
"pageDots": false }'>
<img class="carousel-cell" src="Website Portfolio/Pictures/pf-awet/pf-awet-1.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/pf-awet/pf-awet-2.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/pf-awet/pf-awet-3.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/pf-awet/pf-awet-4.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/pf-awet/pf-awet-5.jpg" />
<img class="carousel-cell" src="Website Portfolio/Pictures/pf-awet/pf-awet-6.jpg" />
</div>
<a onclick="window.open('AWET/AWET-Homepage.html');" ontouchend="window.open('AWET/AWET-Homepage.html');">Open Website in New Tab</a>
</article>
</section>
<hr class="divider" style="margin: 20px auto;" />
<h1 class="header-text">More Will Come . . .</h1>
<hr class="divider" style="margin: 20px auto;"/>
</div>
<!-- Sevice Tab Starts Here -->
<div id="srv-tab" class="tab">
<section class="contact-container srv">
<h1>Curriculum vitae</h1>
<div class="cv-handler">
<button type="button" id="dwldCV">Download</button>
</div>
<a id="dlCV" href="Website Portfolio/Pictures/Jonas_Anthony_Adaoag_-_Resume.pdf" download="file" style="display: none;"></a>
<div class="cv-holder">
<section class="cv-header">
<div>
<h4>Name</h4>
<h3>Jonas Anthony M. Adaoag</h4>
<h4>Mobile</h4>
<h3>+63 999 769 9439</h4>
<h4>Email</h4>
<h3>[email protected]</h3>
<h3>[email protected]</h3>
<h4>General Address</h4>
<h3>Calamba, Laguna, Philippines</h3>
</div>
<!-- <img> -->
</section>
<section class="cv-section">
<h1>Mission</h1>
<h3>To secure a position that will hone my overall skills and gain additional knowledgeinmy circle of expertise, to which will be then utilized, in-tandem with my past-present
skill, to aid the company’s reputation and sales in the field of Information Technology.</h3>
</section>
<section class="cv-section">
<h1>Eductional Background</h1>
<div class="text-container">
<table>
<tr>
<td colspan="3">Colegio De San Juan De Letran</td>
</tr>
<tr>
<td>Junior High</td>
<td> </td>
<td>2012-2015</td>
</tr>
</table>
<table>
<tr>
<td colspan="3">Colegio De San Juan De Letran</td>
</tr>
<tr>
<td>Senior High</td>
<td> </td>
<td>2016-2018</td>
</tr>
</table>
<table>
<tr>
<td colspan="3">Malayan Colleges Laguna -MCL</td>
</tr>
<tr>
<td>Bachelor of Science in Information Technology</td>
<td> </td>
<td>2018-2023</td>
</tr>
</table>
</div>
</section>
<section class="cv-section">
<h1>Geenral Skills & Experience</h1>
<h3 style="margin-left: 30px;">
<ul>
<li>Willing to be taught. Quick Learner</li>
<li>Good English Listening, Reading, Speaking, and Writing Skills via TOEIC tests</li>
<li>Proficient with GIMP Image Editing tool</li>
<li>Research Capable | Proofreading</li>
<li>Video Editing Experience using Adobe Premier</li>
<li>General Programming Knowledge</li>
<li>Website Development using HTML, CSS, JavaScript, and PHP</li>
<li>Database Management using Microsoft SQL (MSSQL) and MySQL</li>
<li>Experience in utilizing CSS Frameworks: Bootstrap CSS and Bulma CSS</li>
<li>Experience in with ASP.NET Web Forms for websites and web-based apps.</li>
<li>Experience in Microcontroller Programming using Arduino Uno, WEMOS.</li>
<li>Experience in coding mobile apps with Android Studio and C# XAMARIN</li>
</ul>
</h3>
</section>
<section class="cv-section"
style="background-size: 80% !important;
background: no-repeat;
background-position-x: right;">
<h1>Sercomm Philippines Inc.</h1>
<h3 style="color: black; font-weight: bold; font-size: 20px;">ROLES</h2>
<h3 style="margin-left: 30px;">
<ol>
<li>Familiarized in Software Development Flow</li>
<li>Created numerous In-House Web-based tools using FineReport</li>
<li>Written numerous complex SQL SERVER queries</li>
<li>Closely-worked and Interacted with end-users</li>
<li>Creating User-manual/SOP(s) for my developed projects for end-users</li>
<li>Frontend troubleshooting</li>
<li>Backend debugging</li>
<li>Experienced in utilizing CSS, JavaScript, and jQuery</li>
</ol>
</h3>
</section>
</div>
</section>
</div>
<!-- Appendices Tab Starts Here -->
<div id="appnd-tab" class="tab">
<section class="contact-container">
<div class="contact-holder">
<!-- <div class="form-section">
<h1>Contact Me</h1>
<h3>Let's get to know each other!</h3>
<h3>And enjoy some cup of coffee in the process too!</h3>
<form>
<input type="name" class="form-control" id="contName" placeholder="Your Name" name="name" value="">
<input type="email" class="form-control" id="contEmail" placeholder="Your Email" name="email" value="">
<textarea class="form-control" id="contMsg" placeholder="Type your message here..." name="message" rows="10"></textarea>
<div style="width: 100%; text-align: right;">
<button id="sndFrm" type="submit"><i class="fa-solid fa-envelope" style="margin-right: 5px;"></i>Submit</button>
</div>
</form>
</div> -->
<div class="contact-section">
<ul class="sidebar-nav-list">
<li class="nav-list-items">
<i class="fa-solid fa-envelope"></i>
<span>[email protected]</span>
</li>
<li class="nav-list-items">
<i class="fa-solid fa-phone"></i>
<span>+(63)999 769 439 - 09997699439</span>
</li>
<li id="clssBttn" class="nav-list-items">
<i class="fa-brands fa-facebook-f"></i>
<a href="https://www.facebook.com/JonsDogg/"><span>JonsDogg</span></a>
</li>
<li class="nav-list-items">
<i class="fa-brands fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/jonas-anthony-adaoag-245b46236/"><span>Jonas Anthony Adaoag</span></a>
</li>
</ul>
</div>
</div>
</section>
</div>
</seciton>
</main>
<script lang="javascript">
// For main Nav selection
let getInnerElem;
let getOvly;
let getElem = document.querySelectorAll(".navbar-container a");
for (var i = 0; i < getElem.length; i++) {
getInnerElem = document.getElementById(getElem[i].id);
getInnerElem.addEventListener('click', function() {
actvSelect(this.id);
}, false);
}
function actvSelect(getId) {
//window.scrollTo({top: 300, behavior: 'smooth'});
let activeId = "";
getOvly = document.getElementsByClassName("tab current");
getOvly[0].classList.remove("current");
switch(getId) {
case "hmBttn":
activeId = "bckgrnd-tab";
break;
case "prjBttn":
activeId = "prjct-tab";
break;
case "srvBttn":
activeId = "srv-tab";
break;
case "appBttn":
activeId = "appnd-tab";
break;
}
getElem = document.getElementById(activeId);
getElem.classList.add("current");
}
// Get nav-overlay
function actvNv(getSrc) {
getOvly = document.getElementsByClassName("nav-overlay");
getOvly[0].classList.add("active");
let getNavImg = document.getElementById("navImg");
getNavImg.src = getSrc;
return false;
}
getElem = document.getElementById("closeNav");
getElem.addEventListener('click', function() {
getOvly[0].classList.remove("active");
})
getElem = document.querySelectorAll(".crt-img");
for (var i = 0; i < getElem.length; i++) {
getInnerElem = document.getElementById(getElem[i].id);
getInnerElem.addEventListener('click', function() {
actvNv(this.src);
}, false);
}
getElem = document.querySelectorAll(".cert article span");
for (var i = 0; i < getElem.length; i++) {
getInnerElem = document.getElementById(getElem[i].id);
getInnerElem.addEventListener('click', function() {
actvNv(document.getElementById("img-" + this.id).src);
}, false);
}
setTimeout(function () {
getElem = document.getElementById("prjct-tab");
getElem.classList.remove("current");
}, 1000);
// Function for Main Nav Sticking after scroll
window.onscroll = function() {
//scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 650 || document.documentElement.scrollTop > 650)
document.getElementsByClassName("mid-navbar")[0].classList.add("nav-anm");
else
document.getElementsByClassName("mid-navbar")[0].classList.remove("nav-anm");
}
// Function for File Download
function downloadFile(url, fileName){
fetch(url, { method: 'get', mode: 'no-cors', referrerPolicy: 'no-referrer' })
.then(res => res.blob())
.then(res => {
const aElement = document.createElement('a');
aElement.setAttribute('download', fileName);
const href = URL.createObjectURL(res);
aElement.href = href;
// aElement.setAttribute('href', href);
aElement.setAttribute('target', '_blank');
aElement.click();
URL.revokeObjectURL(href);
});
};
getElem = document.getElementById("dwldCV");
getElem.addEventListener('click', function() {
downloadFile('Website Portfolio/Pictures/Jonas_Anthony_Adaoag_-_Resume.pdf', 'Jonas_Anthony_Adaoag_-_Resume.pdf')
})
</script>
</body>
</html>