-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
928 lines (709 loc) · 39.9 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
<!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="shortcut icon" href="images/f.png">
<title>Website Portfolio</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style-switcher.css">
<script src="https://unpkg.com/ityped@0.0.5"></script>
</head>
<body>
<div id="menu-bars" class="fas fa-bars"></div>
<!-- header section starts -->
<header>
<h2><a href="/"><img src="images/cc.png"></a></h2>
<a href="#" class="logo"> <span>Andrey</span> Carvajal </a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#service">certifications</a>
<a href="#experience">experience</a>
<a href="#portfolio">portfolio</a>
<a href="#contact">contact</a>
</nav>
<div class="follow">
<a href="https://www.facebook.com/AndyCarvajal100fx" class="fab fa-facebook-f" target="_blank"></a>
<a href="https://twitter.com/AndreyCarvaja17" class="fab fa-twitter" target="_blank"></a>
<a href="https://www.instagram.com/carvajal.ups/" class="fab fa-instagram" target="_blank"></a>
<a href="https://www.linkedin.com/in/andrey-carvajal-12745b1ab/" class="fab fa-linkedin"
target="_blank"></a>
<a href="https://github.com/Wasabi95" class="fab fa-github" target="_blank"></a>
</div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content ">
<span class="hi"> hi there... </span>
<h3>I'm Andrey <span>Carvajal </span> </h3>
<div>
<span id="ityped" class="ityped"></span><span class="ityped-cursor">|</span>
</div>
<p class="text"> I'm a self-taught programmer looking for an entry-level or trained position, where I
can work my way up. Over one year of Hands-on-Training, feeling ready to get Hands-on-Experience.
</p>
<a href="#about" class="btn">about me</a>
</div>
<div class="image">
<img src="images/resume portfolio1_ccexpress13.png" alt="">
</div>
</section>
<!-- home section ends -->
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"> about <span> me </span> </h1>
<div class="row-1">
<div class="image">
<img src="images/resume portfolio_ccexpress11.png" alt="">
</div>
<div class="content">
<p><span>Hi! My name is Andrey Carvajal. </span>
<br>
I'm a self-taught Full-Stack Developer, Google Cloud Engineer and
IT, certified by
<strong><a
href="https://www.coursera.org/professional-certificates/google-it-support?action=enroll"
target="_blank" style="color: crimson">Google IT Support Professional
Certificate</a></strong>,
<br>
<strong>
<a href="https://cloud.google.com/certification/cloud-engineer" target="_blank"
style="color: crimson">Google Cloud Fundamentals</a></strong>
</strong>, <strong>
<a href="https://www.qwiklabs.com/public_profiles/854a3feb-6a76-4d5a-bc49-d931873dc50a/badges/1705369?utm_medium=social&utm_source=linkedin&utm_campaign=ql-social-share"
target="_blank" style="color: crimson">Kubernetes in Google Cloud</a></strong>.
</strong>
<br>
I have been happily married for eight years already. I am from Cali, Colombia.
<br>
I have lived in Fort-Myers, Florida for the past 20 years.I have a four-legged son called
Wasabi. Do you want
to meet my cat ?
<a href="https://www.tiktok.com/@wasabicarvajalm1223/video/6989955646502259974?_d=secCgYIASAHKAESPgo8ZwvgZo660XqPestKuBaadY%2FO1Gztx5Os9wyxKQBMAoKVPQQ9Gg2mL8Gxa84sIU9KWiJvJOg4v0xjH4nsGgA%3D&checksum=23e2484cbbc6a9910b57316f97dc760ba46ffbd1a20e54b59982ad1907b6aa19&language=en&preview_pb=0&sec_user_id=MS4wLjABAAAAxT7nke3bOHAPqrefMRtJgZmrUEGSH3UXf-oIdmNYBXv7iCABM9lTtAVhl5ZmbDPy&share_app_id=1233&share_item_id=6989955646502259974&share_link_id=694f6f3c-34d4-417a-b857-f2e044031c2f&source=h5_m&timestamp=1631556083&u_code=dgffmd5457melf&user_id=6918060901175362565&utm_campaign=client_share&utm_medium=android&utm_source=copy&_r=1"
target="_blank" style="color: red">Click here</a>. He is a fun and friendly cat.
<br> Traveling is one of my passions, I had the opportunity to live in NYC which taught me so
much about life, and
about myself. I truly had not seen diversity until I moved to the big Apple. Getting to know
diferents cultures is
amazing
because it teaches you to put yourself in someone else’s shoes. I consider myself a team player,
organized-driven
and a people person. In this journey that is life, I have developed a strong skill called
resilience. I always try
to overcome every obstacle and fear by always looking on the bright side of everything and
learning from them.
<br> Contact me at: <a href="/" style="color: crimson">Coding4funjs@Gmail.Com</a>
</p>
<div class="box-container">
<div class="box">
<p> <span> language : </span> English, Spanish </p>
<p> <span> work : </span> full-stack developer, Cloud Engineer </p>
</div>
<div class="box">
<p> <span> phone : </span> +239-400-0359 </p>
<p> <span> email : </span> Coding4funjs@Gmail.Com </p>
<p> <span> country : </span> USA </p>
</div>
</div>
<a href="#" class="btn">download CV</a>
<a href="#" class="btn">hire me</a>
</div>
</div>
<h1 class="heading"> <span> my </span> skills </h1>
<div class="row-2">
<div class="skills">
<div class="progress">
<h3> Front-End Engineer <span> 80% </span> </h3>
<div class="bar"> <span></span> </div>
</div>
<div class="progress">
<h3> Google Cloud Networking <span> 80% </span> </h3>
<div class="bar"> <span></span> </div>
</div>
<div class="progress">
<h3> UI design <span> 75% </span> </h3>
<div class="bar"> <span></span> </div>
</div>
<div class="progress">
<h3> Javascript <span> Basic </span> </h3>
<div class="bar"> <span></span> </div>
</div>
<div class="progress">
<h3> Firebase <span> Basic </span> </h3>
<div class="bar"> <span></span> </div>
</div>
</div>
<div class="box-container">
<div class="box">
<h3> >> 1+ </h3>
<p>Hands-on Training experience</p>
</div>
<div class="box">
<h3> >> 20+ </h3>
<p>projects completed</p>
</div>
</div>
</div>
</section>
<!-- about section ends -->
<!-- service section starts -->
<section class="service" id="service">
<h1 class="heading"> <span> my </span> certifications </h1>
<div class="box-container">
<div class="box">
<i class="fas fa-code"></i>
<a href="https://www.coursera.org/professional-certificates/google-it-support?action=enroll">
<h3>Google IT Support Professional Certificate</h3>
</a>
<p>Network protocols, cloud computing, Windows operating system, Linux command line, systems
administration, encryption
algorithms and techniques, and more.</p>
<button class="button button2">
<a href="https://www.coursera.org/account/accomplishments/certificate/AQETNN9GLA8J"
target="_blank">View Certification
</a>
</button>
</div>
<div class="box">
<i class="fas fa-paint-brush"></i>
<h3>Google Cloud Core Infrastructure</h3>
<p>Associate Cloud Engineers deploy applications, monitor operations, and manage enterprise
solutions. They use Google
Cloud Console and the command-line interface to perform common platform-based tasks to maintain
one or more deployed
solutions that leverage Google-managed or self-managed services on Google Cloud.</p>
<button class="button button2">
<a href="https://www.coursera.org/account/accomplishments/certificate/AQETNN9GLA8J"
target="_blank">View
Certification
</a>
</button>
</div>
<div class="box">
<i class="fas fa-mobile"></i>
<h3>Kubernetes in Google Cloud</h3>
<p>Build Solutions using Google Kubernetes Engine (GKE). To build, schedule, practice load
balancing, and
monitor your workloads. Manage role-based access control and security, and provide persistent
storage to your cloud applications.
</p>
<button class="button button2">
<a href="https://www.qwiklabs.com/public_profiles/854a3feb-6a76-4d5a-bc49-d931873dc50a/badges/1705369?utm_medium=social&utm_source=linkedin&utm_campaign=ql-social-share"
target="_blank">View
Certification
</a>
</button>
</div>
<div class="box">
<i class="fas fa-bullhorn"></i>
<h3>IBM Full Stack Cloud Developer Professional Certificate</h3>
<p>Master Cloud Native and Full Stack Development using hands-on projects involving HTML,
JavaScript, Node.js, Python,
Django, Containers, Microservices and more.
</br>
Develop with front-end development languages and tools such as HTML, CSS, JavaScript, React and
Bootstrap
</br>
Program applications using back-end languages and frameworks like Express, Node.js, Python,
Django, etc.
</br>
Deploy and scale applications using Cloud Native methodologies and tools like Containers,
Kubernetes, Microservices and
Serverless Functions
</br>
Build your GitHub portfolio by applying your Full Stack Cloud Development skills with multiple
labs and hands-on
projects, including a capstone
</p>
<button class="button button2">
<a href="https://www.coursera.org/account/accomplishments/certificate/AQETNN9GLA8J"
target="_blank">View
Certification
</a>
</button>
</div>
</div>
</section>
<!-- service section ends -->
<!-- experience section starts -->
<section class="experience" id="experience">
<h1 class="heading"> <span> my </span> experience </h1>
<div class="box-container">
<div class="box">
<div class="content">
<span> 2015 - Current </span>
<h3>Social Media Specialist</h3>
<a href="https://appen.com/" target="_blank">
<h2> Appen Limited </h2>
</a>
<p>The Appen Social Media Evaluator position will work to improve the relevancy of a leading
technology company’s social
media based news feed.
</br>
At the moment I am working as a fact-checker, my duties include:
</p>
</br>
<div class="job-description">
<ul>
<li>Confirming details: A fact-checker must be able to confirm details with a source
without
watering down, or altering, the
story itself.</li>
<li>Correcting copy: This can include spelling, grammar, and punctuation errors.</li>
<li>Confirm historical information: The dates of events that happened decades ago are as
important as those of current
events.</li>
<li>
Confirm data: This might include the quoted results of studies and surveys.
</li>
<li>
Confirm identities: The names, addresses, and identities of quoted sources must be
confirmed, including ascertaining
that they really said or implied information that's being attributed to them without
alarming them, potentially making
them retract their quotes.
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- experience section ends -->
<!-- portfolio section starts -->
<section class="portfolio" id="portfolio">
<h1 class="heading"> <span> my </span> portfolio </h1>
<div class="catalog-search">
<div class="filter">
<form>
<fieldset>
<legend>Choose a Topic</legend>
<div class="models">
<div class="checkbox">
<label><input type="checkbox" rel="fsd" onchange="change();" />Full-Stack
Development</label>
</div>
<div class="checkbox">
<label><input type="checkbox" rel="gcp" onchange="change();" />Google
Cloud</label>
</div>
<div class="checkbox">
<label><input type="checkbox" rel="googlemaps" onchange="change();" />Google
Maps</label>
</div>
<div class="checkbox">
<label><input type="checkbox" rel="js" onchange="change();" />Javascript</label>
</div>
<div class="checkbox">
<label><input type="checkbox" rel="fed" onchange="change();" />Front-End
Development</label>
</div>
</div>
</form>
</fieldset>
</div>
<div class="box-container1">
<div class="fed">
<img class="devsite-card-icon" alt="Web"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/web.svg">
<h3>Front-End Development</h3>
<p>Responsive Mobile Menu</p>
<button class="button button1">
<a href="https://wasabi95.github.io/Responsive-MobileMenu/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/Responsive-MobileMenu" target="_blank">View Code
</a>
</button>
</div>
<div class="fed">
<img class="devsite-card-icon" alt="Web"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/web.svg">
<h3>Front-End Development 1</h3>
<p>Responsive Footer</p>
<button class="button button1">
<a href="https://wasabi95.github.io/NavBar-SideMenu/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/NavBar-SideMenu/" target="_blank">View Code
</a>
</button>
</div>
<div class="fed">
<img class="devsite-card-icon" alt="Web"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/web.svg">
<h3>Front-End Development 2</h3>
<p>Tesla Clone- React</p>
<button class="button button1">
<a href="https://priceless-varahamihira-e93444.netlify.app/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/Tesla-Clone-React-Javascript" target="_blank">View Code
</a>
</button>
</div>
<div class="js">
<img class="devsite-card-icon" alt="Javascript Logo" src="images/javascript logo.jpg">
<h3>Javascript</h3>
<p>A button that outputs a greeting.</p>
<button class="button button1">
<a href="https://wasabi95.github.io/GreetMe-Javascript/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/GreetMe-Javascript" target="_blank">View Code
</a>
</button>
</div>
<div class="fed">
<img class="devsite-card-icon" alt="Web"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/web.svg">
<h3>Front-End Development 3</h3>
<p>Landing page-Responsive</p>
<button class="button button1">
<a href="https://wasabi95.github.io/FrontendPage/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/FrontendPage" target="_blank">View Code
</a>
</button>
</div>
<div class="js">
<img class="devsite-card-icon" alt="Javascript Logo" src="images/javascript logo.jpg">
<h3>Javascript 1</h3>
<p>Hello World infinite flickering </p>
<button class="button button1">
<a href="https://wasabi95.github.io/Blinking-Javascript/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/Blinking-Javascript" target="_blank">View Code
</a>
</button>
</div>
<div class="js">
<img class="devsite-card-icon" alt="Javascript Logo" src="images/javascript logo.jpg">
<h3>Javascript 2</h3>
<p>Menu SideBar</p>
<button class="button button1">
<a href="https://wasabi95.github.io/MenuSideBar-Javascript/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/MenuSideBar-Javascript" target="_blank">View Code
</a>
</button>
</div>
<div class="fed">
<img class="devsite-card-icon" alt="Web"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/web.svg">
<h3>Front-End Development 4</h3>
<p>Responsive NavBar</p>
<button class="button button1">
<a href="https://wasabi95.github.io/NavBar-Responsive-JS/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/NavBar-Responsive-JS" target="_blank">View Code
</a>
</button>
</div>
<div class="js">
<img class="devsite-card-icon" alt="Javascript Logo" src="images/javascript logo.jpg">
<h3>JavaScript 3</h3>
<p>Get the current time and date</p>
<button class="button button1">
<a href="https://wasabi95.github.io/Time-and-Date-Javascript/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/Time-and-Date-Javascript" target="_blank">View Code
</a>
</button>
</div>
<div class="js">
<img class="devsite-card-icon" alt="Javascript Logo" src="images/javascript logo.jpg">
<h3>Javascript 4</h3>
<p>Responsive Open SideBar</p>
<button class="button button1">
<a href="https://wasabi95.github.io/OpenSideBar-Javascript/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/OpenSideBar-Javascript" target="_blank">View Code
</a>
</button>
</div>
<div class="js">
<img class="devsite-card-icon" alt="Javascript Logo" src="images/javascript logo.jpg">
<h3>JavaScript 5</h3>
<p>TodoList app.</p>
<button class="button button1">
<a href="https://wasabi95.github.io/TodoList-Javascript/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/TodoList-Javascript" target="_blank">View Code
</a>
</button>
</div>
<div class="fed">
<img class="devsite-card-icon" alt="Web"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/web.svg">
<h3>Front-End Development 5</h3>
<p>Landing page-Responsive & Accesible</p>
<button class="button button1">
<a href="https://wasabi95.github.io/Accessible-Responsive/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/Accessible-Responsive" target="_blank">View Code
</a>
</button>
</div>
<div class="gcp">
<img class="devsite-card-icon" alt="Cloud"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/cloud.svg">
<h3>Google Cloud</h3>
<p>Building a High-throughput VPN with Google Cloud Platform</p>
<button class="button button1">
<a href="https://github.com/Wasabi95/Building-a-High-throughput-VPN" target="_blank">Preview
Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/Building-a-High-throughput-VPN" target="_blank">View
Code
</a>
</button>
</div>
<div class="js">
<img class="devsite-card-icon" alt="Javascript Logo" src="images/javascript logo.jpg">
<h3>Javascript 6</h3>
<p>Button visibility</p>
<button class="button button1">
<a href="https://github.com/Wasabi95/TodoList-Javascript" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/NavBar-SideMenu/" target="_blank">View Code
</a>
</button>
</div>
<div class="gcp">
<img class="devsite-card-icon" alt="Cloud"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/cloud.svg">
<h3>Google Cloud 1</h3>
<p>Maps JavaScript API GeoJSON AppEngine with Google Cloud Platform</p>
<button class="button button1">
<a href="https://github.com/Wasabi95/full-stack-store-locator-with-Google-Maps-Platform-and-Google-Cloud"
target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/full-stack-store-locator-with-Google-Maps-Platform-and-Google-Cloud"
target="_blank">View Code
</a>
</button>
</div>
<div class="js">
<img class="devsite-card-icon" alt="Google Maps" src="images/javascript logo.jpg">
<h3>Javascript 7</h3>
<p>Valid Email </p>
<button class="button button1">
<a href="https://wasabi95.github.io/Submit-Valid-Email-Javascript/" target="_blank">Preview
Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/Submit-Valid-Email-Javascript" target="_blank">View
Code
</a>
</button>
</div>
<div class="fsd">
<i class="fas fa-envelope"></i>
<h3>Full-Stack Project 6</h3>
<p>Store Locator</p>
<button class="button button1">
<a href="https://wasabi95.github.io/GCP-StoreLocator-GoogleMAPS/" target="_blank">Preview
Site
</a>
</button>
<button class="button button2">
<a href=https://github.com/Wasabi95/GCP-StoreLocator-GoogleMAPS" target="_blank">View Code
</a>
</button>
</div>
<div class="googlemaps">
<img class="devsite-card-icon" alt="Google Maps"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/google-maps.svg">
<h3>Google Maps 1</h3>
<p>Autocomplete Map</p>
<button class="button button1">
<a href="https://wasabi95.github.io/GCP-Autocomplete-Maps/" target="_blank">Preview
Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/GCP-Autocomplete-Maps" target="_blank">View
Code
</a>
</button>
</div>
<div class="googlemaps">
<img class="devsite-card-icon" alt="Google Maps"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/google-maps.svg">
<h3>Google Maps 2</h3>
<p>Restaurant Search Finder</p>
<button class="button button1">
<a href="https://github.com/Wasabi95/Restaurant-Search-Finde-JS" target="_blank">Preview
Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/Restaurant-Search-Finde-JS" target="_blank">View
Code
</a>
</button>
</div>
<div class="googlemaps">
<img class="devsite-card-icon" alt="Google Maps"
src="https://www.gstatic.com/devrel-devsite/prod/v96fe7c72c7b00a90a6621d124258058ede00fa09bdb0b7e43bfa676d03923593/images/icons/google-maps.svg">
<h3>Google Maps 3</h3>
<p>Autocomplete Hotel Search</p>
<button class="button button1">
<a href="https://wasabi95.github.io/GCP-API-PlaceAutocomplete-Hotel-Search/"
target="_blank">Preview
Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/GCP-API-PlaceAutocomplete-Hotel-Search"
target="_blank">View
Code
</a>
</button>
</div>
<div class="fsd">
<i class="fas fa-chart-line"></i>
<h3>Full-Stack Project 2</h3>
<p>Map Locator</p>
<button class="button button1">
<a href="https://github.com/Wasabi95/full-stack-store-locator-with-Google-Maps-Platform-and-Google-Cloud"
target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/full-stack-store-locator-with-Google-Maps-Platform-and-Google-Cloud"
target="_blank">View Code
</a>
</button>
</div>
<div class="fsd">
<i class="fas fa-envelope"></i>
<h3>Full-Stack Project 3</h3>
<p>AWS Amplify Notes App</p>
<button class="button button1">
<a href="https://github.com/Wasabi95/amplify-notesapp" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/amplify-notesapp" target="_blank">View Code
</a>
</button>
</div>
<div class="fsd">
<i class="fas fa-chart-line"></i>
<h3>Full-Stack Project 4</h3>
<p>AWS Amplify, DynamoD</p>
<button class="button button1">
<a href="https://wasabi95.github.io/AWS-Full-Stack/" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/AWS-Full-Stack" target="_blank">View Code
</a>
</button>
</div>
<div class="fsd">
<i class="fas fa-envelope"></i>
<h3>Full-Stack Project 5</h3>
<p>Friendly Chat-Firebase</p>
<button class="button button1">
<a href="https://github.com/Wasabi95/TodoList-Javascript" target="_blank">Preview Site
</a>
</button>
<button class="button button2">
<a href="https://github.com/Wasabi95/FriendLy-Chat-Full-Stack-Firebase" target="_blank">View
Code
</a>
</button>
</div>
</div>
</section>
<!-- portfolio section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<h1 class="heading"> contact <span> me </span> </h1>
<div class="icons-container">
<div class="icons">
<i class="fas fa-envelope"></i>
<h3>my email</h3>
<p>coding4funjs@gmail.com</p>
</div>
<div class="icons">
<i class="fas fa-phone"></i>
<h3>my number</h3>
<p>+239-400-0359</p>
</div>
<div class="icons">
<i class="fas fa-map-marker-alt"></i>
<h3>my address</h3>
<p>1800 Brantley Rd. Fort Myers, Fl 33907</p>
</div>
</div>
<div class="row">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3568.6658500218673!2d-81.87868218496247!3d26.563000583279482!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88db3ff824efd79b%3A0x4ba4cff7b9533d95!2s1801%20Brantley%20Rd%2C%20Fort%20Myers%2C%20FL%2033907!5e0!3m2!1sen!2sus!4v1641066812864!5m2!1sen!2sus"
width="1100" height="300" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<footer class="footer"> created by <span>Andrey Carvajal </span> | all rights reserved! </footer>
</section>
<!-- contact section ends -->
<!-- footer section -->
<div class="style-switcher">
<div class="style-switcher-toggler s-icon">
<i class="fas fa-cog fa-spin"></i>
</div>
<div class="day-night s-icon">
<i class="fas "></i>
</div>
</div>
</div>
<!-- custom js file link -->
<script src="js/script.js"></script>
<script src="js/style-switcher.js"></script>
<script src="js/checkbox.js"></script>
<script src="js/pagination.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.12/typed.min.js"
referrerpolicy="no-referrer"></script>
<script>
ityped.init('#ityped', {
strings: ['Front-End Developer.', 'Cloud Engineer.', 'Content Creator.', 'Full-Stack Developer.'],
startDelay: 800,
loop: true
});
</script>
</body>
</html>