-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
1330 lines (1277 loc) · 67.1 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1"/>
<meta name="author" content="Jhon Arzu-Gil">
<meta name="copyright" content="Jhon Arzu-Gil" />
<meta name="description" content="Explore the expertise of Jhon Arzu-Gil, an IBM Application Developer Specialist, offering custom web development, cloud computing solutions, and innovative software services. Specializing in full-stack development, cloud architecture, and digital transformation.">
<meta name="facebook-domain-verification" content="u11bk0pa7paqrfnpckghid1sfk1je9" />
<!-- Open Graph / Facebook -->
<meta property='og:site_name' content='Portfolio Site For Jhon Arzu-Gil'>
<meta property="og:type" content="website">
<meta property="og:url" content="https://arzugil.com">
<meta property="og:title" content="Jhon Arzu-Gil">
<meta property="og:description" content="Explore the expertise of Jhon Arzu-Gil, an IBM Application Developer Specialist, offering custom web development, cloud computing solutions, and innovative software services. Specializing in full-stack development, cloud architecture, and digital transformation.">
<meta property="og:image" content="https://www.arzugil.com/images/hackerJhon.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://arzugil.com">
<meta property="twitter:title" content="Jhon Arzu-Gil">
<meta property="twitter:site" content="@JhonArzuGil">
<meta property="twitter:description" content="Explore the expertise of Jhon Arzu-Gil, an IBM Application Developer Specialist, offering custom web development, cloud computing solutions, and innovative software services. Specializing in full-stack development, cloud architecture, and digital transformation.">
<meta property="twitter:image" content="https://www.arzugil.com/images/hackerJhon.png">
<meta name="twitter:image:alt" content="Explore the expertise of Jhon Arzu-Gil, an IBM Application Developer Specialist, offering custom web development, cloud computing solutions, and innovative software services. Specializing in full-stack development, cloud architecture, and digital transformation.">
<meta property='og:email' content='[email protected]'>
<meta property='og:phone_number' content='+1-248-938-5567'>
<meta property='og:fax_number' content='+1-248-938-5567'>
<meta property='og:latitude' content='29.814508'>
<meta property='og:longitude' content='-95.3319327'>
<meta property='og:street-address' content='4409 Caplin St'>
<meta property='og:locality' content='Houston'>
<meta property='og:region' content='TX'>
<meta property='og:postal-code' content='77026'>
<meta property='og:country-name' content='USA'>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="PWAGram">
<meta name="msapplication-TileImage" content="/src/images/icons/app-icon-144x144.png">
<meta name="msapplication-TileColor" content="#fff">
<meta name="theme-color" content="#3f51b5">
<link rel="manifest" href="/manifest.json">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9V4BDEDHJV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9V4BDEDHJV');
</script>
<title>Jhon Arzu-Gil | Cloud Computing Specialist & Full-Stack Developer | Custom Web Solutions </title>
<!-- Bootstrap Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome Stylesheets -->
<link rel="stylesheet" href="css/fontawesome/all.min.css">
<!-- Owl Carousel Stylesheets -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Lightbox Stylesheets -->
<link rel="stylesheet" href="css/lightbox.min.css">
<!-- Parallax Stylesheets -->
<link rel="stylesheet" href="css/parallax.css" type="text/css">
<!-- Template Main Stylesheets -->
<link rel="stylesheet" href="css/style.css" type="text/css">
<!-- Responsive Stylesheets -->
<link rel="stylesheet" href="css/responsive.css" type="text/css">
</head>
<body>
<!-- start Header -->
<header id="header" class="header fixed-top headerbg-darkcolor nav-container">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- Navigation Menu -->
<nav class="navbar navbar-expand-lg navbar-light mgsbsnavbar">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" onclick="mgsChangeMenubar(this)">
<span class="menubar1"></span>
<span class="menubar2"></span>
<span class="menubar3"></span>
</button>
<a class="navbar-brand d-md-block d-lg-none" href="https://cloudtechnologycomputing.com">
<img class="logo logo-color" src="images/logo.avif" alt="Jhon Arzu-Gil">
<img class="logo logo-white" src="images/logo.avif" alt="Jhon Arzu-Gil">
</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<a class="navbar-brand d-none d-sm-none d-md-none d-lg-block" href="https://cloudtechnologycomputing.com">
<img class="logo logo-color" src="images/logo.avif" alt="Jhon Arzu-Gil">
<img class="logo logo-white" src="images/logo.avif" alt="Jhon Arzu-Gil">
</a>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.cloudtechnologycomputing.com">Tech-Startup</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#service">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#blog">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- end Navigation Menu -->
</div><!--End col-sm-12 -->
</div><!-- end row -->
</div><!--End container -->
</header>
<!-- end Header -->
<!-- start slider and home section -->
<section id="home" class="home">
<div class="home-top-banner banner-1">
<div id="particles-js"></div>
<div class="display-table">
<div class="display-table-cell">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="banner-content">
<h1 class="header-title-text type-animate">
<a href="" class="typewrite" data-period="2000" data-type='[ "Hi, I am Jhon Arzu-Gil.", "I am a Application Developer Programming Specialist.", "I Founded Cloud Technology Computing Corporation.", "I travel all over the United States." ]'>
<span class="wrap"></span>
</a>
</h1>
<h3 style="color:white;">Application Developer Specialist & Founder Of Cloud Technology Computing</h3>
<ul class="list-inline list-social">
<li>
<a href="https://www.facebook.com/profile.php?id=61552191954476" class="social-icon social-icon-facebook" target="_blank">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="https://twitter.com/JhonArzuGil" class="social-icon social-icon-twitter" target="_blank">
<i class="fab fa-twitter"></i>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/jhongil" class="social-icon social-icon-linkedin" target="_blank">
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCnqgsyT440RgQFkHbnc3WRA" class="social-icon social-icon-youtube" target="_blank">
<i class="fab fa-youtube"></i>
<i class="fab fa-youtube"></i>
</a>
</li>
<li>
<a href="https://vimeo.com/user190211965" class="social-icon social-icon-vimeo" target="_blank">
<i class="fab fa-vimeo-v"></i>
<i class="fab fa-vimeo-v"></i>
</a>
</li>
<li>
<a href="https://www.pinterest.com/jarzugil20/" class="social-icon social-icon-pinterest" target="_blank">
<i class="fab fa-pinterest-p"></i>
<i class="fab fa-pinterest-p"></i>
</a>
</li>
</ul><!--End list-social -->
</div><!--End banner-content -->
<!-- start quoteForm-holder -->
<div class="quoteForm-holder">
<form id="quoteForm" name="free-quote" data-toggle="validator" class="quoteForm" action="quote-process.php" method="POST">
<h3 class="form-title">Get a free quote</h3>
<div id="msgQuoteSubmit" class="hidden"></div>
<div class="form-group">
<div class="help-block with-errors"></div>
<input name="fname" id="quoteName" placeholder="Full Name*" class="form-control" required data-error="Please enter your name" type="text" aria-label="Full Name">
<div class="input-group-icon"><i class="fa-solid fa-user"></i></div>
</div><!-- End form-group -->
<div class="form-group">
<div class="help-block with-errors"></div>
<input name="email" id="quoteEmail" placeholder="Email Address*" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" class="form-control" required data-error="Please enter a valid email address" type="email" aria-label="Email Address">
<div class="input-group-icon"><i class="fa-solid fa-envelope"></i></div>
</div><!-- End form-group -->
<div class="form-group">
<div class="help-block with-errors"></div>
<input name="phone" id="quotePhone" placeholder="Phone Number*" class="form-control" required data-error="Please enter a valid phone number" type="text" aria-label="Phone Number">
<div class="input-group-icon"><i class="fa-solid fa-phone"></i></div>
</div><!-- End form-group -->
<div class="form-group">
<div class="help-block with-errors"></div>
<select name="service" id="quoteService" class="form-control" required data-error="Please select a service" aria-label="Service Selection">
<option value="">--- Select a Service ---</option>
<option value="Web Development">Web Development</option>
<option value="SAP Consulting">SAP Consulting</option>
<option value="Mobile Development">Mobile Development</option>
<option value="Full-Stack Development">Full-Stack Development</option>
<option value="Cloud Solutions">Cloud Solutions</option>
<option value="Support">Support</option>
</select>
<div class="input-group-icon"><i class="fa-solid fa-gear"></i></div>
</div><!-- End form-group -->
<div class="form-group bottomMargin0">
<button type="submit" id="quoteSubmit" class="btn btn-shutter-out-horizontal" style="pointer-events: all; cursor: pointer;">Send Request</button>
</div><!-- End form-group -->
<span class="sub-text">* Required fields</span>
</form>
<script>
$(document).ready(function() {
$('#quoteForm').on('submit', function(e) {
e.preventDefault(); // Prevent the default form submission
$.ajax({
url: 'quote-process.php', // The PHP file to handle the form submission
type: 'POST', // The HTTP method to use
data: $(this).serialize(), // Serialize the form data
success: function(response) {
// Display the response (success or error message)
$('#msgQuoteSubmit').removeClass('hidden').html(response);
$('#quoteForm')[0].reset(); // Optionally reset the form fields
},
error: function(xhr, status, error) {
// Display a generic error message
$('#msgQuoteSubmit').removeClass('hidden').html('<h3>Sorry, there was an error processing your request. Please try again later.</h3>');
}
});
});
});
</script>
</div><!--End quoteForm-holder -->
</div><!--End col-sm-12 -->
</div><!--End row -->
</div><!--End container -->
</div><!--End display-table-cell -->
</div><!--End display-table -->
</div><!--End home-top-banner -->
</section>
<!-- end slider and home section -->
<!-- start About section -->
<section id="about" class="about about-box-style">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">My <span>Story</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
</div><!-- end col -->
<div class="col-sm-12">
<div class="row">
<div class="col-sm-6">
<div class="profile-image">
<img src="images/profile/Jhon%20Arzu-Gil%20Profile%20IMG.avif" alt="Jhon Arzu-Gil In front of a mirror taking a selfie">
</div><!-- end profile-image -->
</div><!-- end col -->
<div class="col-sm-6">
<div class="about-text">
<!-- start title-box -->
<div class="title-box">
<h3 class="sub-title">About <strong>Me</strong></h3>
</div><!-- end title-box -->
<p>As an Application Developer and Programming Specialist, I've built a strong foundation over the past 6 years in web development, focusing on HTML, CSS, JavaScript, SQL, and PHP—collectively known as the "Vanillas." These languages are the core of web development, forming the bedrock for any advanced framework. Recognizing the increasing importance of mobile devices—where 58.99% of global website traffic originates and smartphones make up nearly 80% of all cell phones—I also embraced Java, leveraging its "Write Once, Run Everywhere" philosophy.</p>
<p>Beyond programming, I hold certifications in Cloud Computing, Big Data, AI, Machine Learning, Blockchain, Data Science, and Security. My experience at a leading Big Tech company has given me a deep understanding of data analytics using tools like Python and Jupyter Notebooks, as well as SAP Analytics Cloud. I've successfully turned complex data into actionable insights and developed five mobile apps available on Google Play.</p>
<p>In addition to technical skills, I have a solid background in digital marketing, with successful campaigns in Amazon PPC, Facebook, Google, Snapchat, TikTok, and Twitter Advertising. This diverse skill set equips me to tackle the multifaceted challenges in today's technology landscape.</p>
<p>Willing to relocate: Anywhere</p>
<div class="button-holder">
<a class="btn btn-shutter-out-horizontal" href="images/Certifications/UpdatedResumeJhonArzuGil.pdf">Download Resume</a>
<a class="btn btn-shutter-out-horizontal" href="#portfolio">My Works</a>
</div><!-- end button-holder -->
</div><!-- about-text -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end col-sm-12 -->
<div class="col-sm-12">
<!-- start title-box -->
<div class="title-box">
<h3 class="sub-title">Work <strong>Experience</strong></h3>
</div><!-- end title-box -->
<div class="row">
<div class="col-md-4">
<div class="experience-content color-border">
<p class="range">2020 - Current</p>
<h4>IBM</h4>
<p class="text-bold">Application Developer Specialist</p>
<p>
As an Application Developer Specialist at IBM's analytics department, my focus lies in leveraging technology to craft robust solutions for data analytics. I specialize in developing applications that manage, process, and extract insights from vast datasets. My role involves collaborating across teams to understand requirements, employing languages like Python and SQL for efficient data handling. I ensure data integrity, optimize databases, and troubleshoot to deliver top-notch, scalable analytics solutions.</p>
</div><!-- end experience-content -->
</div><!-- end col -->
<div class="col-md-4">
<div class="experience-content color-border">
<p class="range">2023 - Current</p>
<h4>IBM</h4>
<p class="text-bold">Founder Of Cloud Technology Computing</p>
<p>
As the Founder of Cloud Technology Computing, I witness the rapid evolution of cloud-supporting technologies. Organizations grapple with keeping pace amidst this swift advancement, often facing challenges in adapting their infrastructure, security, and operations to leverage these innovations effectively. My role involves guiding businesses in navigating these changes, ensuring seamless integration, and optimizing their cloud strategies for enhanced efficiency and competitiveness in the digital landscape.
</p>
</div><!-- end experience-content -->
</div><!-- end col -->
<div class="col-md-4">
<div class="experience-content color-border">
<p class="range">2023 - Current</p>
<h4>I.T Contract Work</h4>
<p class="text-bold">Freelance</p>
<p>Engaged in contract work as a fullstack developer, I specialize in PHP and focus on crafting custom WordPress sites. Proficient in frontend and backend technologies, I bring a comprehensive skill set to deliver tailored solutions. My work aims at enhancing website functionality and user experience. With expertise in PHP, JavaScript, and WordPress APIs, I ensure seamless integration and responsive design, providing clients with personalized, high-quality websites that meet their unique requirements.</p>
</div><!-- end experience-content -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end col-sm-12 -->
<div class="col-sm-12">
<!-- start title-box -->
<div class="title-box">
<h3 class="sub-title">My <strong>Education</strong></h3>
</div><!-- end title-box -->
<div class="row">
<div class="col-md-4">
<div class="experience-content color-border">
<p class="range">2023 -</p>
<h4>Bachelor's Degree</h4>
<p class="text-bold">Cloud Computing From WGU</p>
<p>Currently enrolled in a Bachelor's Degree program in Cloud Computing at WGU, I am immersing myself in cutting-edge technologies. This comprehensive curriculum covers cloud architecture, security, and virtualization, providing a solid foundation for designing and implementing scalable cloud solutions. I am gaining hands-on experience with major cloud platforms, ensuring I graduate with the skills needed to excel in the rapidly evolving field of cloud computing.</p>
</div><!-- end experience-content -->
</div><!-- end col -->
<div class="col-md-4">
<div class="experience-content color-border">
<p class="range">2020 - 2021</p>
<h4>Apprenticeship</h4>
<p class="text-bold">IBM</p>
<p>
I successfully completed an apprenticeship as an application developer at IBM. This immersive experience equipped me with practical skills in software development, programming languages, and collaborative project management. Working alongside seasoned professionals, I gained valuable insights into industry best practices and contributed to real-world projects, solidifying my foundation as a proficient application developer.</p>
</div><!-- end experience-content -->
</div><!-- end col -->
<div class="col-md-4">
<div class="experience-content color-border">
<p class="range">2018 - 2018</p>
<h4>Tech Bootcamp </h4>
<p class="text-bold">College 42</p>
<p>
I completed the Piscine at College 42, a tech bootcamp in Silicon Valley, California. The intensive program honed my coding skills, problem-solving abilities, and collaboration in a dynamic learning environment. Focused on hands-on projects and peer-based evaluation, it provided a unique approach to mastering programming. This experience at College 42 has equipped me with a strong foundation for success in the tech industry,that later helped me got a job in Big Tech.</p>
</div><!-- end experience-content -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end col-sm-12 -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<!-- end About section -->
<!-- start service -->
<section id="service" class="service service-2-column parallax">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">services i <span>offer</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
<div class="intro-text text-center">
I have over twenty-six different Technology based certifications! Like the industry leading Comptia A+ certification,Cloud Computing certifications from from Microsoft Azure and IBM and certifications in Artificial Intelligence, Machine Learning, Block Chain Docker and Kubernetes, data analytical applications like SAP SAC Analytics.
</div><!-- end intro-text -->
</div><!-- end col -->
<div class="col-md-6 col-xs-6">
<div class="service-wrap color-border">
<div class="service-box">
<div class="service-box-wrap">
<i class="fa-solid fa-code"></i>
<h3>Full-Stack Developer</h3>
<p>
As a fullstack developer, I offer end-to-end solutions, proficient in both frontend and backend development. Specializing in technologies like HTML, CSS, JavaScript for frontend, and Node.js, Express, or Django for backend, I create responsive, dynamic, and scalable web applications. My expertise includes database design (SQL/NoSQL), API integration, and ensuring optimal performance. Whether it's crafting intuitive user interfaces or architecting robust server-side logic, I deliver comprehensive and tailored solutions to meet diverse project needs.</p>
<a class="btn btn-shutter-out-horizontal" href="FullStackDeveloper.html">View Details</a>
</div>
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
<div class="col-md-6 col-xs-6">
<div class="service-wrap color-border">
<div class="service-box">
<div class="service-box-wrap">
<i class="fa-solid fa-file-code"></i>
<h3>Sap Consultant</h3>
<p>
As an SAP Consultant, I provide specialized services in SAP implementation, customization, and optimization. My expertise spans modules like SAP ERP, SAP S/4HANA, and SAP BW. I excel in configuring business processes, conducting system integration, and offering solutions for data migration. With a focus on maximizing SAP's capabilities, I ensure clients leverage the full potential of their SAP landscape. From system analysis to ongoing support, I deliver strategic insights and technical proficiency to enhance organizational efficiency and competitiveness.</p>
<a class="btn btn-shutter-out-horizontal" href="single-service.html">View Details</a>
</div>
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
<div class="col-md-6 col-xs-6">
<div class="service-wrap color-border">
<div class="service-box">
<div class="service-box-wrap">
<i class="fa-solid fa-window-maximize"></i>
<h3>Mobile Development</h3>
<p>I specialize in Mobile Development, offering expertise in both iOS Native and Android Native app development. Leveraging Swift and Objective-C for iOS and Kotlin/Java for Android, I craft high-performance, user-friendly applications. My services encompass the entire development lifecycle, from UI/UX design to coding, testing, and deployment. I prioritize creating seamless, platform-specific experiences, ensuring optimal performance and user satisfaction,Whether it's building from scratch or enhancing existing apps, I deliver tailored solutions that align with client goals and industry best practices. I have over 5 apps in the Google Playstore!</p>
<a class="btn btn-shutter-out-horizontal" href="single-service.html">View Details</a>
</div>
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
<div class="col-md-6 col-xs-6">
<div class="service-wrap color-border">
<div class="service-box">
<div class="service-box-wrap">
<i class="fa-solid fa-cubes"></i>
<h3>Cloud Solutions</h3>
<p>
I provide Cloud Solutions expertise with certifications in IBM Cloud and Azure. Specializing in architecting and implementing cloud-based solutions, I ensure seamless integration, scalability, and security. Leveraging my proficiency in IBM Cloud and Azure services, I offer comprehensive solutions tailored to diverse business needs. Whether it's migration, optimization, or ongoing management, my goal is to empower clients with reliable, cutting-edge cloud solutions that align with industry standards and best practices. Thats why I created Cloud Technology Computing a Corporation Founded in Texas, that plans on being the leader in Cloud Consulting</p>
<a class="btn btn-shutter-out-horizontal" href="single-service.html">View Details</a>
</div>
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
</div><!-- end row -->
</div><!--End Container -->
</section>
<!-- end service -->
<!-- start clients -->
<section id="clients" class="clients">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">My <span>Certification</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
</div><!-- end col -->
<div class="col-sm-12">
<div class="owl-carousel owl-theme">
<div class="client-item-wrap">
<img src="images/Certifications/JhonsComptiaA+.avif" alt="Jhon Arzu-Gil's Comptia A+ Certification"/>
</div><!-- end client-item-wrap -->
<div class="client-item-wrap">
<img src="images/Certifications/AWSCloudPractitioner.webp" alt="Jhon Arzu-Gil's IBM Enterprise Design Certification "/>
</div>
<div class="client-item-wrap">
<img src="images/Certifications/ComptiaNetworking+.webp" alt="Jhon Arzu-Gil's IBM Enterprise Design Certification "/>
</div>
<div class="client-item-wrap">
<img src="images/Certifications/ComptiaStackable.webp" alt="Jhon Arzu-Gil's IBM Enterprise Design Certification "/>
</div>
<div class="client-item-wrap">
<img src="images/Certifications/JhonArzuGilAzure900.avif" alt="Jhon Arzu-Gil's Azure 900 Certification "/>
</div><!-- end client-item-wrap -->
<div class="client-item-wrap">
<img src="images/Certifications/JhonsAnalyticsCloud.avif" alt="Jhon Arzu-Gil's SAP Analytics Cloud "/>
</div><!-- end client-item-wrap -->
<div class="client-item-wrap">
<img src="images/Certifications/SecurityPrivacy.avif" alt="Jhon Arzu-Gil's IBM Security and Privacy Certification "/>
</div><!-- end client-item-wrap -->
<div class="client-item-wrap">
<img src="images/Certifications/IBMstoragecert.avif" alt="Jhon Arzu-Gil's IBM Cloud Storage Certification "/>
</div><!-- end client-item-wrap -->
<div class="client-item-wrap">
<img src="images/Certifications/IBMAICertJhons.avif" alt="Jhon Arzu-Gil's IBM A.I Certification"/>
</div><!-- end client-item-wrap -->
<div class="client-item-wrap">
<img src="images/Certifications/IBM%20Cloud%20Cert.avif" alt="Jhon Arzu-Gil's IBM Cloud Core Certification "/>
</div><!-- end client-item-wrap -->
<div class="client-item-wrap">
<img src="images/Certifications/DeveloperApprenticeship.avif" alt="Jhon Arzu-Gil's IBM Application Developer Apprenticeship Certification back by the DOL "/>
</div><!-- end client-item-wrap -->
<div class="client-item-wrap">
<img src="images/Certifications/EnterpriseDesign.avif" alt="Jhon Arzu-Gil's IBM Enterprise Design Certification "/>
</div>
<!-- end client-item-wrap -->
</div><!-- end owl-carousel -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
<div class="clearfix"></div>
</section>
<!-- end clients -->
<!-- start success-story -->
<section id="success-story" class="success-story parallax">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">Success <span>Story</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
</div><!-- end col -->
<!-- BEGIN count Box -->
<div class="success-story-inner text-center">
<div class="row">
<div class="col-sm-6 col-lg-3">
<div class="counter-wrap color-border">
<div class="counter-icon"><i class="fa-solid fa-user-graduate"></i></div>
<div class="counter-text">
<div class="counter">26</div>
<p>Certifications And Counting!</p>
</div><!-- end counter-text -->
</div><!-- end counter-wrap -->
</div><!-- end col -->
<div class="col-sm-6 col-lg-3">
<div class="counter-wrap color-border">
<div class="counter-icon"><i class="fa-solid fa-rotate"></i></div>
<div class="counter-text">
<div class="counter">6</div>
<p>Years Of Experience!</p>
</div><!-- end counter-text -->
</div><!-- end counter-wrap -->
</div><!-- end col -->
<div class="col-sm-6 col-lg-3">
<div class="counter-wrap color-border">
<div class="counter-icon"><i class="fa-solid fa-globe"></i></div>
<div class="counter-text">
<div class="counter">4</div>
<p>Years Working For Big Tech!</p>
</div><!-- end counter-text -->
</div><!-- end counter-wrap -->
</div><!-- end col -->
<div class="col-sm-6 col-lg-3">
<div class="counter-wrap color-border">
<div class="counter-icon"><i class="fa-solid fa-book-journal-whills"></i></div>
<div class="counter-text">
<div class="counter">28</div>
<p>Cloud Computing Credits!</p>
</div><!-- end counter-text -->
</div><!-- end counter-wrap -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end success-story-inner -->
<!-- END count Box -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<!--End #success-story -->
<!-- start Pricing Plan -->
<section id="pricing" class="pricing">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">Pricing <span>Plan</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
</div><!-- end col -->
<div class="col-sm-12 pricing-table">
<div class="pricing-plan">
<div class="pricing-plan-wrap standard">
<h3>Basic Website</h3>
<div class="price-holder">
<div class="toggle-price-standard-year">
<p class="dolar"><sup>$</sup> 600 <sub>/year</sub></p>
<button class="btn btn-link change-plan" onClick="changePlanStandard('month')">Choose Monthly Plan</button>
</div>
<div class="toggle-price-standard-month">
<p class="dolar"><sup>$</sup> 100 <sub>/month<strong>*</strong></sub></p>
<button class="btn btn-link change-plan" onClick="changePlanStandard('year')">Choose Aannual Plan</button>
</div>
</div>
<ul class="list-unstyled">
<li>1 Email</li>
<li>1 Domain</li>
<li>1 SSL Certificate</li>
<li>3 Web Pages</li>
</ul>
<a class="btn btn-shutter-out-horizontal" href="#">Choose this plan</a>
</div><!-- end pricing-plan-wrap -->
</div><!-- end pricing-plan -->
<div class="pricing-plan active">
<div class="pricing-plan-wrap starter">
<h3>E-Commerce Site </h3>
<div class="price-holder">
<div class="toggle-price-starter-year">
<p class="dolar"><sup>$</sup> 1200 <sub>/year</sub></p>
<button class="btn btn-link change-plan" onClick="changePlanStarter('month')">Choose Monthly Plan</button>
</div>
<div class="toggle-price-starter-month">
<p class="dolar"><sup>$</sup> 200 <sub>/month<strong>*</strong></sub></p>
<button class="btn btn-link change-plan" onClick="changePlanStarter('year')">Choose Aannual Plan</button>
</div>
</div>
<ul class="list-unstyled">
<li>CMS WordPress</li>
<li>1 Email</li>
<li>1 Domains</li>
<li>1 SSL Certificate</li>
</ul>
<a class="btn btn-shutter-out-horizontal" href="#">Choose this plan</a>
</div><!-- end pricing-plan-wrap -->
</div><!-- end pricing-plan -->
<div class="pricing-plan">
<div class="pricing-plan-wrap premium">
<h3>Mobile APP</h3>
<div class="price-holder">
<div class="toggle-price-premium-year">
<p class="dolar"><sup>$</sup> 10000 <sub>/year</sub></p>
<button class="btn btn-link change-plan" onClick="changePlanPremium('month')">Choose Monthly Plan</button>
</div>
<div class="toggle-price-premium-month">
<p class="dolar"><sup>$</sup> 1000 <sub>/month<strong>*</strong></sub></p>
<button class="btn btn-link change-plan" onClick="changePlanPremium('year')">Choose Aannual Plan</button>
</div>
</div>
<ul class="list-unstyled">
<li>Android or IOS Native</li>
<li>1 Email</li>
<li>1 Domain</li>
<li>App Store or PlayStore Download</li>
</ul>
<a class="btn btn-shutter-out-horizontal" href="#">Choose this plan</a>
</div><!-- end pricing-plan-wrap -->
</div><!-- end pricing-plan -->
</div><!-- end pricing-table -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<!-- end Pricing Plan -->
<!-- start portfolio -->
<section id="portfolio" class="filter-section portfolio-style2 parallax">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">My <span>Works</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
<div class="intro-text text-center">
A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my heart.
</div><!-- end intro-text -->
</div><!-- end col -->
<div class="col-sm-12">
<!-- start filter-container -->
<div class="filter-container isotopeFilters">
<ul class="list-inline filter">
<li class="list-inline-item active"><a href="#" data-filter="*">All </a></li>
<li class="list-inline-item"><a href="#" data-filter=".websites">Websites</a></li>
<li class="list-inline-item"><a href="#" data-filter=".apps">Mobile App's</a></li>
<li class="list-inline-item"><a href="#" data-filter=".spftware">Software</a></li>
<li class="list-inline-item"><a href="#" data-filter=".cliet">Clients</a></li>
</ul>
</div><!--End filter-container -->
<div class="isotopeContainer">
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-3 no-space isotopeSelector websites">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/Project1ArzugilDisplay.avif" alt="Portfolio Site">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="https://arzugil.com"><i class="fas fa-link"></i></a>
<a data-lightbox="allportfolio" data-title="Project Title1" href="images/portfolio/Project1Arzugil.avif"><i class="fas fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="javascript:void(0)">Portfolio Site</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div><!-- end col -->
<div class="col-sm-6 col-md-6 col-lg-3 no-space isotopeSelector websites">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/Project2CloudtechnologCcomputingDisplay.avif" alt="Tech Startup">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="https://cloudtechnologycomputing.com"><i class="fas fa-link"></i></a>
<a data-lightbox="allportfolio" data-title="Project Title2" href="images/portfolio/Project2CloudtechnologCcomputing.avif"><i class="fas fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="javascript:void(0)">Tech Startup</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div><!-- end col -->
<div class="col-sm-6 col-md-6 col-lg-3 no-space isotopeSelector websites">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/Project3IownyaDisplay.avif" alt="E-Commerce Site">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="https://iownya.com"><i class="fas fa-link"></i></a>
<a data-lightbox="allportfolio" data-title="Project Title3" href="images/portfolio/Project3Iownya.avif"><i class="fas fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="javascript:void(0)">E-Commerce Site</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div><!-- end col -->
<div class="col-sm-6 col-md-6 col-lg-3 no-space isotopeSelector apps">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/Project4IownyaAppDisplay.avif" alt="E-Commerce App">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="https://play.google.com/store/apps/details?id=com.iownya.iownya&hl=en_US&gl=US"><i class="fas fa-link"></i></a>
<a data-lightbox="allportfolio" data-title="Project Title4" href="images/portfolio/Project4IownyaApp.avif"><i class="fas fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="javascript:void(0)">>E-Commerce App</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div><!-- end col -->
<div class="col-sm-6 col-md-6 col-lg-3 no-space isotopeSelector apps">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/Project5MemoirApppngDisplay.avif" alt="Memoir App">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="https://play.google.com/store/apps/details?id=com.aiconsulting.travellive&hl=en_US&gl=US"><i class="fas fa-link"></i></a>
<a data-lightbox="allportfolio" data-title="Project Title5" href="images/portfolio/Project5MemoirApppng.avif"><i class="fas fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="javascript:void(0)">Memoir App</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div><!-- end col -->
<div class="col-sm-6 col-md-6 col-lg-3 no-space isotopeSelector apps">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/Project6BeachAppDisplay.avif" alt=">Weather App">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="https://play.google.com/store/apps/details?id=com.arzugil.whatstheweather&hl=en_US&gl=US"><i class="fas fa-link"></i></a>
<a data-lightbox="allportfolio" data-title="Project Title6" href="images/portfolio/Project6BeachApp.avif"><i class="fas fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="javascript:void(0)">Weather App</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div><!-- end col -->
</div><!--End row -->
</div><!--End isotopeContainer -->
</div><!--End col-sm-12 -->
</div><!-- end row -->
</div><!--End container -->
</section>
<!-- end portfolio -->
<!-- start team -->
<section id="team" class="our-team">
<div class="container">
<div class="row" >
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">My <span>Team</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
<div class="intro-text text-center">
Someone is sitting in the shade today because someone planted a tree a long time ago. "Warren Buffett"
</div><!-- end intro-text -->
</div><!--End col-sm-12 -->
<div class="col-md-6 col-lg-4">
<div class="team-wrap color-border">
<div class="team-thumb">
<img src="images/team/Jhongil.avif" alt="Jhon Arzu-Gil">
</div><!-- end team-thumb -->
<div class="team-details">
<div class="details-plain">
<p>Any sufficiently advanced technology is indistinguishable from magic. "Arthur C. Clarke</p>
<div class="team-social">
<a href="https://www.facebook.com/profile.php?id=61552191954476" class="social-icon social-icon-small social-icon-facebook">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://twitter.com/JhonArzuGil" class="social-icon social-icon-small social-icon-twitter">
<i class="fab fa-twitter"></i>
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.pinterest.com/jarzugil20" class="social-icon social-icon-small social-icon-pinterest">
<i class="fab fa-pinterest-p"></i>
<i class="fab fa-pinterest-p"></i>
</a>
<a href="https://www.linkedin.com/in/jhongil" class="social-icon social-icon-small social-icon-linkedin">
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-linkedin-in"></i>
</a>
</div><!-- end team-social -->
</div><!-- end details-plain -->
<div class="details-overly">
<div class="team-title">
<h4>Jhon Arzu-Gil</h4>
<h5>Funder & President</h5>
</div><!-- end team-title -->
<div class="team-social">
<a href="https://www.facebook.com/profile.php?id=61552191954476" class="social-icon social-icon-small social-icon-facebook">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-facebook-f"></i>
</a>
<a href="ttps://twitter.com/JhonArzuGil" class="social-icon social-icon-small social-icon-twitter">
<i class="fab fa-twitter"></i>
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.pinterest.com/jarzugil20" class="social-icon social-icon-small social-icon-pinterest">
<i class="fab fa-pinterest-p"></i>
<i class="fab fa-pinterest-p"></i>
</a>
<a href="https://www.linkedin.com/in/jhongil" class="social-icon social-icon-small social-icon-linkedin">
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-linkedin-in"></i>
</a>
</div><!-- end team-social -->
</div><!-- end details-overly -->
</div><!-- end team-details -->
</div><!-- end team-wrap -->
</div><!-- end col -->
</div><!-- end row -->
</div><!--End Container -->
</section><!-- End Team -->
<!-- end team -->
<!-- start quotes-section -->
<section id="quotes-section" class="quotes-section parallax">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="quotes-wrap text-center">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">Let's work <span>together</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
<p>I am available for freelance.</p>
<a class="btn btn-shutter-out-horizontal btn-transparent" href="#quoteForm">Get Quotes</a>
</div>
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<!-- end quotes-section -->
<!-- start blog -->
<section id="blog" class="blog blog-style1">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="title-border-svg">
<h2 class="section-title">Blog <span>Posts</span></h2>
<svg height="76" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="title-border-svg-shape" height="76" width="100%"/>
</svg>
</div>
</div><!-- end section title-wrap -->
<div class="intro-text text-center">
I basically wrote the code and the specs and documentation for how the client and server talked to each other.
"Tim Berners-Lee"
</div><!-- end intro-text -->
</div><!-- end col -->
</div><!-- end row -->
<div class="row">
<div class="col-sm-12">
<div class="owl-carousel">
<div class="item">
<article class="post-wrap">
<div class="post-thumb">
<img src="images/blog/thumb/CertificationLayoutArzugilpng.avif" alt="Blog Image">
</div><!--End post-thumb -->
<div class="post-content-bottom">
<div class="hover-overlay"></div>
<div class="content-inner">
<div class="post-meta">
<span><i class="fas fa-user"></i><a href="#">Jhon Arzu-Gil</a></span>
<span><i class="fas fa-calendar-alt"></i><a href="#">Dec 29, 2023</a></span>
<span><i class="fas fa-comments"></i><a href="#">8</a></span>
</div><!--End post-meta -->
<div class="post-title">
<h3><a href="Certification%20Layout/index.html">Previous Site Layout</a></h3>
</div><!--End post-title -->
<div class="post-excerpt">
<p>This is a site layout that focus on certifications <a class="btn-more" href="Certification%20Layout/index.html">Read More <i class="fas fa-angle-double-right"></i></a></p>
</div><!--End post-excerpt -->
</div><!--End content-inner -->
</div><!--End post-content -->
</article><!--End post-wrap -->
</div><!--End item -->
<div class="item">
<article class="post-wrap">
<div class="post-content-top">
<div class="hover-overlay"></div>
<div class="content-inner">
<div class="post-meta">
<span><i class="fas fa-user"></i><a href="#">Jhon Arzu-Gil</a></span>
<span><i class="fas fa-calendar-alt"></i><a href="#">March 26, 2022</a></span>
<span><i class="fas fa-comments"></i><a href="#">8</a></span>
</div><!--End post-meta -->
<div class="post-title">
<h3><a href="Cloud%20Layout/index.php">Previous Site Layout</a></h3>
</div><!--End post-title -->
<div class="post-excerpt">
<p>This site layouyt was closer to Cloud Technology Computing and get replaced <a class="btn-more" href="Cloud%20Layout/index.php">Read More <i class="fas fa-angle-double-right"></i></a></p>
</div><!--End post-excerpt -->
</div><!--End content-inner -->
</div><!--End post-content -->
<div class="post-thumb">
<img src="images/blog/thumb/CloudLayoutArzuGil.avif" alt="Blog Image">
</div><!--End post-thumb -->
</article><!--End post-wrap -->
</div><!--End item -->
</div><!-- end carousel -->
</div><!-- end col -->
</div><!-- end row -->