-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
839 lines (784 loc) · 58.3 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
<!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">
<title>Abril Ramirez</title>
<!-- PAGE LOGO -->
<link rel="shortcut icon" href="/images/logo.ico" type="image/x-icon">
<!-- CSS FILES -->
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/skins/color-4.css">
<!-- Style SWitcher -->
<link rel="stylesheet" href="./css/skins/color-1.css" class="alternate-style" title="color-1" disabled>
<link rel="stylesheet" href="./css/skins/color-2.css" class="alternate-style" title="color-2" disabled>
<link rel="stylesheet" href="./css/skins/color-3.css" class="alternate-style" title="color-3" disabled>
<link rel="stylesheet" href="./css/skins/color-4.css" class="alternate-style" title="color-4" disabled>
<link rel="stylesheet" href="./css/skins/color-5.css" class="alternate-style" title="color-5" disabled>
<link rel="stylesheet" href="./css/style-switcher.css">
<!-- FONT AWESOME -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
</head>
<body>
<!-- MAIN START -->
<main class="main-container">
<!-- ASIDE START -->
<aside class="aside">
<div class="logo">
<a href="#home"><span>A</span>bril</a>
</div>
<div class="nav-toggler">
<span></span>
</div>
<ul class="nav">
<li><a href="#home" class="active"><i class="fa fa-home"></i>Home</a></li>
<li><a href="#about"><i class="fa fa-user"></i>About</a></li>
<li><a href="#certificates"><i class="fa fa-award"></i>Certificates</a></li>
<li><a href="#services"><i class="fa fa-list"></i>Services</a></li>
<li><a href="#portfolio"><i class="fa fa-briefcase"></i>Portfolio</a></li>
<li><a href="#contact"><i class="fa fa-comments"></i>Contact</a></li>
</ul>
</aside>
<!-- ASIDE END -->
<!-- MAIN CONTENT START -->
<div class="main-content">
<!-- HOME SECTION START -->
<section class="home active section" id="home">
<div class="container">
<div class="row">
<div class="home-info padd-15">
<h3 class="hello">Hello, my name is <span class="name">Abril Ramirez</span></h3>
<h3 class="my-profession">I'm a <span class="typing"></span></h3>
<p>
Graduated in Computer Systems Engineer, I'm beginning my journey as a freelance UI/UX & Web Designer, passionate about creating solutions that make a difference.
I am dedicated to providing services with commitment and attention to detail, always ensuring results that exceed expectations.
</p>
<div class="row">
<a href="https://www.linkedin.com/in/abril-ramirez-flores-71a26b275/" class="btn"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="https://www.behance.net/ux_ramirez" class="btn"><i class="fa-brands fa-behance"></i></a>
<a href="https://github.com/iscRamirezAbril" class="btn"><i class="fa-brands fa-github"></i></a>
<a href="https://dribbble.com/ux_ramirez" class="btn"><i class="fa-brands fa-dribbble"></i></a>
</div>
<a href="#contact" class="btn hire-me">Contact</a>
</div>
<div class="home-img padd-15">
<img src="./images/myPhoto1.jpg" alt="profile-picture">
</div>
</div>
<div class="row">
</div>
</div>
</section>
<!-- HOME SECTION END -->
<!-- ABOUT SECTION START -->
<section class="about section" id="about">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>About Me</h2>
</div>
</div>
<div class="row">
<div class="about-content padd-15">
<div class="row">
<div class="about-text padd-15">
<h3>I'm Abril Ramirez, <span>UI/UX Designer and Frontend Developer</span></h3>
<p>
Graduated in Computer Systems Engineer, I'm beginning my journey as a freelance UI/UX & Web Designer, passionate about creating solutions that make a difference.
I am dedicated to providing services with commitment and attention to detail, always ensuring results that exceed expectations.
</p>
</div>
</div>
<div class="row">
<div class="personal-info padd-15">
<div class="row">
<div class="info-item padd-15">
<p>Birthday: <span>March 01, 2001</span></p>
</div>
<div class="info-item padd-15">
<p>Age: <span>23 years</span></p>
</div>
<div class="info-item padd-15">
<p>GitHub: <span>github.com/iscRamirezAbril</span></p>
</div>
<div class="info-item padd-15">
<p>Email: <span>isc.ramirez_abril@outlook.com</span></p>
</div>
<div class="info-item padd-15">
<p>Location: <span>Mexico</span></p>
</div>
<div class="info-item padd-15">
<p>City: <span>Tijuana</span></p>
</div>
<div class="info-item padd-15">
<p>Degree: <span>Computer Systems Engr.</span></p>
</div>
<div class="info-item padd-15">
<p>Freelance: <span>Available</span></p>
</div>
</div>
<div class="row">
<div class="buttons padd-15">
<a href="https://1drv.ms/b/s!Age2Iozt3_YskaRcE_63WbI2YhhB3g?e=7sYVPj" class="btn">View CV</a>
</div>
</div>
</div>
<div class="skills padd-15">
<div class="row">
<div class="skill-item padd-15">
<h5>Figma</h5>
<div class="progress">
<div class="progress-in" style="width: 90%;"></div>
<div class="skill-percent">90%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>HTML</h5>
<div class="progress">
<div class="progress-in" style="width: 80%;"></div>
<div class="skill-percent">80%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>CSS</h5>
<div class="progress">
<div class="progress-in" style="width: 60%;"></div>
<div class="skill-percent">60%</div>
</div>
</div>
<div class="skill-item padd-15">
<h5>Bootstrap</h5>
<div class="progress">
<div class="progress-in" style="width: 90%;"></div>
<div class="skill-percent">90%</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="technologies-tools padd-15">
<h3 class="title">Technologies & Tools</h3>
<div class="row">
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 384">
<title>Figma</title>
<path fill="#0acf83" d="M64 384c35.328 0 64-28.672 64-64v-64H64c-35.328 0-64 28.672-64 64s28.672 64 64 64"/><path fill="#a259ff" d="M0 192c0-35.328 28.672-64 64-64h64v128H64c-35.328 0-64-28.672-64-64"/><path fill="#f24e1e" d="M0 64C0 28.672 28.672 0 64 0h64v128H64C28.672 128 0 99.328 0 64"/><path fill="#ff7262" d="M128 0h64c35.328 0 64 28.672 64 64s-28.672 64-64 64h-64z"/><path fill="#1abcfe" d="M256 192c0 35.328-28.672 64-64 64s-64-28.672-64-64s28.672-64 64-64s64 28.672 64 64"/>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<title>HTML</title>
<path fill="#e44d26" d="M19.037 113.876L9.032 1.661h109.936l-10.016 112.198l-45.019 12.48z"/><path fill="#f16529" d="m64 116.8l36.378-10.086l8.559-95.878H64z"/><path fill="#ebebeb" d="M64 52.455H45.788L44.53 38.361H64V24.599H29.489l.33 3.692l3.382 37.927H64zm0 35.743l-.061.017l-15.327-4.14l-.979-10.975H33.816l1.928 21.609l28.193 7.826l.063-.017z"/><path fill="#fff" d="M63.952 52.455v13.763h16.947l-1.597 17.849l-15.35 4.143v14.319l28.215-7.82l.207-2.325l3.234-36.233l.335-3.696h-3.708zm0-27.856v13.762h33.244l.276-3.092l.628-6.978l.329-3.692z"/>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<title>CSS</title>
<path fill="#1572b6" d="M18.814 114.123L8.76 1.352h110.48l-10.064 112.754l-45.243 12.543z"/><path fill="#33a9dc" d="m64.001 117.062l36.559-10.136l8.601-96.354h-45.16z"/><path fill="#fff" d="M64.001 51.429h18.302l1.264-14.163H64.001V23.435h34.682l-.332 3.711l-3.4 38.114h-30.95z"/><path fill="#ebebeb" d="m64.083 87.349l-.061.018l-15.403-4.159l-.985-11.031H33.752l1.937 21.717l28.331 7.863l.063-.018z"/><path fill="#fff" d="m81.127 64.675l-1.666 18.522l-15.426 4.164v14.39l28.354-7.858l.208-2.337l2.406-26.881z"/><path fill="#ebebeb" d="M64.048 23.435v13.831H30.64l-.277-3.108l-.63-7.012l-.331-3.711zm-.047 27.996v13.831H48.792l-.277-3.108l-.631-7.012l-.33-3.711z"/>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><g fill="none"><rect width="256" height="256" fill="#f0db4f" rx="60"/>
<title>JavaScript</title>
<path fill="#323330" d="m67.312 213.932l19.59-11.856c3.78 6.701 7.218 12.371 15.465 12.371c7.905 0 12.889-3.092 12.889-15.12v-81.798h24.058v82.138c0 24.917-14.606 36.259-35.916 36.259c-19.245 0-30.416-9.967-36.087-21.996m85.07-2.576l19.588-11.341c5.157 8.421 11.859 14.607 23.715 14.607c9.969 0 16.325-4.984 16.325-11.858c0-8.248-6.53-11.17-17.528-15.98l-6.013-2.579c-17.357-7.388-28.871-16.668-28.871-36.258c0-18.044 13.748-31.792 35.229-31.792c15.294 0 26.292 5.328 34.196 19.247l-18.731 12.029c-4.125-7.389-8.591-10.31-15.465-10.31c-7.046 0-11.514 4.468-11.514 10.31c0 7.217 4.468 10.139 14.778 14.608l6.014 2.577c20.449 8.765 31.963 17.699 31.963 37.804c0 21.654-17.012 33.51-39.867 33.51c-22.339 0-36.774-10.654-43.819-24.574"/></g>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><g fill="none"><rect width="256" height="256" fill="url(#skillIconsBootstrap0)" rx="60"/><g filter="url(#skillIconsBootstrap2)">
<title>Bootstrap</title>
<path fill="url(#skillIconsBootstrap1)" d="M131.97 196.157c29.676 0 47.559-14.531 47.559-38.497c0-18.117-12.759-31.232-31.706-33.309v-.754c13.92-2.265 24.843-15.192 24.843-29.628c0-20.57-16.239-33.969-40.986-33.969H76v136.157zM97.653 77.267h28.807c15.66 0 24.553 6.983 24.553 19.627c0 13.493-10.343 21.041-29.096 21.041H97.653zm0 101.623v-44.819h28.613c20.494 0 31.127 7.548 31.127 22.268c0 14.719-10.343 22.551-29.87 22.551z"/><path stroke="#fff" stroke-width="2" d="M131.97 196.157c29.676 0 47.559-14.531 47.559-38.497c0-18.117-12.759-31.232-31.706-33.309v-.754c13.92-2.265 24.843-15.192 24.843-29.628c0-20.57-16.239-33.969-40.986-33.969H76v136.157zM97.653 77.267h28.807c15.66 0 24.553 6.983 24.553 19.627c0 13.493-10.343 21.041-29.096 21.041H97.653zm0 101.623v-44.819h28.613c20.494 0 31.127 7.548 31.127 22.268c0 14.719-10.343 22.551-29.87 22.551z"/></g><defs><linearGradient id="skillIconsBootstrap0" x1="0" x2="256" y1="0" y2="256" gradientUnits="userSpaceOnUse"><stop stop-color="#9013fe"/><stop offset="1" stop-color="#6b11f4"/></linearGradient><linearGradient id="skillIconsBootstrap1" x1="85.793" x2="148.541" y1="68.962" y2="175.084" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#f1e5fc"/></linearGradient><filter id="skillIconsBootstrap2" width="137.529" height="170.157" x="59" y="47" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4"/><feGaussianBlur stdDeviation="8"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_158_100"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_158_100" result="shape"/></filter></defs></g>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<title>NodeJS</title>
<path fill="url(#deviconNodejs0)" d="M66.958.825a6.07 6.07 0 0 0-6.035 0L11.103 29.76c-1.895 1.072-2.96 3.095-2.96 5.24v57.988c0 2.143 1.183 4.167 2.958 5.24l49.82 28.934a6.07 6.07 0 0 0 6.036 0l49.82-28.935c1.894-1.072 2.958-3.096 2.958-5.24V35c0-2.144-1.183-4.167-2.958-5.24z"/><path fill="url(#deviconNodejs1)" d="M116.897 29.76L66.841.825A8 8 0 0 0 65.302.23L9.21 96.798a6.3 6.3 0 0 0 1.657 1.43l50.057 28.934c1.42.833 3.076 1.072 4.615.595l52.66-96.925a3.7 3.7 0 0 0-1.302-1.072"/><path fill="url(#deviconNodejs2)" d="M116.898 98.225c1.42-.833 2.485-2.262 2.958-3.81L65.066.108c-1.42-.238-2.959-.119-4.26.715L11.104 29.639l53.606 98.355c.71-.12 1.54-.358 2.25-.715z"/><defs><linearGradient id="deviconNodejs0" x1="34.513" x2="27.157" y1="15.535" y2="30.448" gradientTransform="translate(-129.242 -73.715)scale(6.18523)" gradientUnits="userSpaceOnUse"><stop stop-color="#3f873f"/><stop offset=".33" stop-color="#3f8b3d"/><stop offset=".637" stop-color="#3e9638"/><stop offset=".934" stop-color="#3da92e"/><stop offset="1" stop-color="#3dae2b"/></linearGradient><linearGradient id="deviconNodejs1" x1="30.009" x2="50.533" y1="23.359" y2="8.288" gradientTransform="translate(-129.242 -73.715)scale(6.18523)" gradientUnits="userSpaceOnUse"><stop offset=".138" stop-color="#3f873f"/><stop offset=".402" stop-color="#52a044"/><stop offset=".713" stop-color="#64b749"/><stop offset=".908" stop-color="#6abf4b"/></linearGradient><linearGradient id="deviconNodejs2" x1="21.917" x2="40.555" y1="22.261" y2="22.261" gradientTransform="translate(-129.242 -73.715)scale(6.18523)" gradientUnits="userSpaceOnUse"><stop offset=".092" stop-color="#6abf4b"/><stop offset=".287" stop-color="#64b749"/><stop offset=".598" stop-color="#52a044"/><stop offset=".862" stop-color="#3f873f"/></linearGradient></defs>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<title>NPM</title>
<path fill="#cb3837" d="M0 7.062C0 3.225 3.225 0 7.062 0h113.88c3.838 0 7.063 3.225 7.063 7.062v113.88c0 3.838-3.225 7.063-7.063 7.063H7.062c-3.837 0-7.062-3.225-7.062-7.063zm23.69 97.518h40.395l.05-58.532h19.494l-.05 58.581h19.543l.05-78.075l-78.075-.1l-.1 78.126z"/><path fill="#fff" d="M25.105 65.52V26.512H40.96c8.72 0 26.274.034 39.008.075l23.153.075v77.866H83.645v-58.54H64.057v58.54H25.105z"/>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<title>Font Awesome</title>
<path fill="#214087" d="M4.393 4.5a2.438 2.438 0 1 0-2.8-.141V24h3v-3h17.513c.684 0 1.238-.554 1.238-1.237a1.2 1.2 0 0 0-.107-.503l-2.893-6.51l2.893-6.51a1.2 1.2 0 0 0 .107-.503c0-.683-.554-1.237-1.238-1.237Z"/>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 254"><defs><linearGradient id="logosVisualStudioCode0" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#fff"/><stop offset="100%" stop-color="#fff" stop-opacity="0"/></linearGradient>
<title>VS Code</title>
<path id="logosVisualStudioCode1" d="M180.828 252.605a15.87 15.87 0 0 0 12.65-.486l52.501-25.262a15.94 15.94 0 0 0 9.025-14.364V41.197a15.94 15.94 0 0 0-9.025-14.363l-52.5-25.263a15.88 15.88 0 0 0-18.115 3.084L74.857 96.35l-43.78-33.232a10.614 10.614 0 0 0-13.56.603L3.476 76.494c-4.63 4.211-4.635 11.495-.012 15.713l37.967 34.638l-37.967 34.637c-4.623 4.219-4.618 11.502.012 15.714l14.041 12.772a10.614 10.614 0 0 0 13.56.604l43.78-33.233l100.507 91.695a15.85 15.85 0 0 0 5.464 3.571m10.464-183.649l-76.262 57.889l76.262 57.888z"/></defs><mask id="logosVisualStudioCode2" fill="#fff"><use href="#logosVisualStudioCode1"/></mask><path fill="#0065a9" d="M246.135 26.873L193.593 1.575a15.885 15.885 0 0 0-18.123 3.08L3.466 161.482c-4.626 4.219-4.62 11.502.012 15.714l14.05 12.772a10.625 10.625 0 0 0 13.569.604L238.229 33.436c6.949-5.271 16.93-.315 16.93 8.407v-.61a15.94 15.94 0 0 0-9.024-14.36" mask="url(#logosVisualStudioCode2)"/><path fill="#007acc" d="m246.135 226.816l-52.542 25.298a15.89 15.89 0 0 1-18.123-3.08L3.466 92.207c-4.626-4.218-4.62-11.502.012-15.713l14.05-12.773a10.625 10.625 0 0 1 13.569-.603l207.132 157.135c6.949 5.271 16.93.315 16.93-8.408v.611a15.94 15.94 0 0 1-9.024 14.36" mask="url(#logosVisualStudioCode2)"/><path fill="#1f9cf0" d="M193.428 252.134a15.89 15.89 0 0 1-18.125-3.083c5.881 5.88 15.938 1.715 15.938-6.603V11.273c0-8.318-10.057-12.483-15.938-6.602a15.89 15.89 0 0 1 18.125-3.084l52.533 25.263a15.94 15.94 0 0 1 9.03 14.363V212.51c0 6.125-3.51 11.709-9.03 14.363z" mask="url(#logosVisualStudioCode2)"/><path fill="url(#logosVisualStudioCode0)" fill-opacity="0.25" d="M180.828 252.605a15.87 15.87 0 0 0 12.65-.486l52.5-25.263a15.94 15.94 0 0 0 9.026-14.363V41.197a15.94 15.94 0 0 0-9.025-14.363L193.477 1.57a15.88 15.88 0 0 0-18.114 3.084L74.857 96.35l-43.78-33.232a10.614 10.614 0 0 0-13.56.603L3.476 76.494c-4.63 4.211-4.635 11.495-.012 15.713l37.967 34.638l-37.967 34.637c-4.623 4.219-4.618 11.502.012 15.714l14.041 12.772a10.614 10.614 0 0 0 13.56.604l43.78-33.233l100.506 91.695a15.9 15.9 0 0 0 5.465 3.571m10.464-183.65l-76.262 57.89l76.262 57.888z" mask="url(#logosVisualStudioCode2)"/>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
<title>Git</title>
<path fill="#f34f29" d="M124.737 58.378L69.621 3.264c-3.172-3.174-8.32-3.174-11.497 0L46.68 14.71l14.518 14.518c3.375-1.139 7.243-.375 9.932 2.314c2.703 2.706 3.461 6.607 2.294 9.993l13.992 13.993c3.385-1.167 7.292-.413 9.994 2.295c3.78 3.777 3.78 9.9 0 13.679a9.673 9.673 0 0 1-13.683 0a9.68 9.68 0 0 1-2.105-10.521L68.574 47.933l-.002 34.341a9.7 9.7 0 0 1 2.559 1.828c3.778 3.777 3.778 9.898 0 13.683c-3.779 3.777-9.904 3.777-13.679 0c-3.778-3.784-3.778-9.905 0-13.683a9.7 9.7 0 0 1 3.167-2.11V47.333a9.6 9.6 0 0 1-3.167-2.111c-2.862-2.86-3.551-7.06-2.083-10.576L41.056 20.333L3.264 58.123a8.133 8.133 0 0 0 0 11.5l55.117 55.114c3.174 3.174 8.32 3.174 11.499 0l54.858-54.858a8.135 8.135 0 0 0-.001-11.501"/>
</svg>
</div>
<div class="tool-item padd-15">
<svg class="svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><g fill="#181616">
<title>Github</title>
<path fill-rule="evenodd" d="M64 5.103c-33.347 0-60.388 27.035-60.388 60.388c0 26.682 17.303 49.317 41.297 57.303c3.017.56 4.125-1.31 4.125-2.905c0-1.44-.056-6.197-.082-11.243c-16.8 3.653-20.345-7.125-20.345-7.125c-2.747-6.98-6.705-8.836-6.705-8.836c-5.48-3.748.413-3.67.413-3.67c6.063.425 9.257 6.223 9.257 6.223c5.386 9.23 14.127 6.562 17.573 5.02c.542-3.903 2.107-6.568 3.834-8.076c-13.413-1.525-27.514-6.704-27.514-29.843c0-6.593 2.36-11.98 6.223-16.21c-.628-1.52-2.695-7.662.584-15.98c0 0 5.07-1.623 16.61 6.19C53.7 35 58.867 34.327 64 34.304c5.13.023 10.3.694 15.127 2.033c11.526-7.813 16.59-6.19 16.59-6.19c3.287 8.317 1.22 14.46.593 15.98c3.872 4.23 6.215 9.617 6.215 16.21c0 23.194-14.127 28.3-27.574 29.796c2.167 1.874 4.097 5.55 4.097 11.183c0 8.08-.07 14.583-.07 16.572c0 1.607 1.088 3.49 4.148 2.897c23.98-7.994 41.263-30.622 41.263-57.294C124.388 32.14 97.35 5.104 64 5.104z" clip-rule="evenodd"/><path d="M26.484 91.806c-.133.3-.605.39-1.035.185c-.44-.196-.685-.605-.543-.906c.13-.31.603-.395 1.04-.188c.44.197.69.61.537.91zm2.446 2.729c-.287.267-.85.143-1.232-.28c-.396-.42-.47-.983-.177-1.254c.298-.266.844-.14 1.24.28c.394.426.472.984.17 1.255zm2.382 3.477c-.37.258-.976.017-1.35-.52c-.37-.538-.37-1.183.01-1.44c.373-.258.97-.025 1.35.507c.368.545.368 1.19-.01 1.452zm3.261 3.361c-.33.365-1.036.267-1.552-.23c-.527-.487-.674-1.18-.343-1.544c.336-.366 1.045-.264 1.564.23c.527.486.686 1.18.333 1.543zm4.5 1.951c-.147.473-.825.688-1.51.486c-.683-.207-1.13-.76-.99-1.238c.14-.477.823-.7 1.512-.485c.683.206 1.13.756.988 1.237m4.943.361c.017.498-.563.91-1.28.92c-.723.017-1.308-.387-1.315-.877c0-.503.568-.91 1.29-.924c.717-.013 1.306.387 1.306.88zm4.598-.782c.086.485-.413.984-1.126 1.117c-.7.13-1.35-.172-1.44-.653c-.086-.498.422-.997 1.122-1.126c.714-.123 1.354.17 1.444.663zm0 0"/></g>
</svg>
</div>
</div>
</div>
</div>
<div class="row">
<div class="education padd-15">
<h3 class="title">Education</h3>
<div class="row">
<div class="timeline-box padd-15">
<div class="timeline shadow-dark">
<!-- timeline item -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> Aug 2019 - Dec 2023
</h3>
<h4 class="timeline-title">Tijuana Technological Institute</h4>
<p class="timeline-text">
In this 4 years of career, I improved my skills on C# programming and obtained new ones; like HTML, Figma and SQL Server topics.
</p>
</div>
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> Aug 2016 - Jun 2019
</h3>
<h4 class="timeline-title">Lazaro Cardenas Federal High School</h4>
<p class="timeline-text">
In my 3 years of High School, I discover what Programming is. I learned C#, a bit of Python, Bootstrap, and I made my first Database on SQL.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="experience padd-15">
<h3 class="title">Experience</h3>
<div class="row">
<div class="timeline-box padd-15">
<div class="timeline shadow-dark">
<!-- timeline item -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> Oct 2024 - Present
</h3>
<h4 class="timeline-title">Freelance UI/UX & Web Designer Services</h4>
<p class="timeline-text">
After preparing myself with some courses and certifications, I'm offering my Figma & Coding skills to create websites for many clients & companies. </p>
</div>
<!-- timeline item -->
<!-- timeline item -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> Mar 2024 - Apr 2024
</h3>
<h4 class="timeline-title">Administrative Assistant - Merlot Bistro</h4>
<p class="timeline-text">
In my job position, I was in charge of capture of kitchen inventories, also of registration of purchases by using “Back Office Switchboard” and “Contpaqi” softwares. </p>
</div>
<!-- timeline item -->
<!-- timeline item -->
<div class="timeline-item">
<div class="circle-dot"></div>
<h3 class="timeline-date">
<i class="fa fa-calendar"></i> Jun 2023 - Jul 2023
</h3>
<h4 class="timeline-title">Project Intern - Bizclon Tijuana</h4>
<p class="timeline-text">
In this work team, I played the roles of UI/UX Designer, Project Documentation, Project manager and team leader.
</p>
</div>
<!-- timeline item -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ABOUT SECTION END -->
<!-- CERTIFICATES SECTION START -->
<section class="certificates section" id="certificates">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>Certificates</h2>
</div>
</div>
<div class="certifications-content padd-15">
<div class="row">
<h3 class="title">Certifications</h3>
<div class="row">
<!-- certification item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/certifications/certificate7.jpg" alt="Bootstrap 5 From Scratch | Build 5 Modern Websites">
</div>
<div class="certification-info">
<h4>Fundamentals of UI/UX Design</h4>
<p>Institution: Coursera</p>
<p><i class="fa fa-calendar"></i> Aug 23, 2024</p>
</div>
</div>
</div>
<!-- certification item end -->
<!-- certification item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/certifications/certificate6.jpg" alt="Bootstrap 5 From Scratch | Build 5 Modern Websites">
</div>
<div class="certification-info">
<h4>Bootstrap 5 From Scratch | Build 5 Modern Websites</h4>
<p>Institution: Udemy</p>
<p><i class="fa fa-calendar"></i> Aug 20, 2024</p>
</div>
</div>
</div>
<!-- certification item end -->
<!-- certification item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/certifications/certificate5.jpg" alt="Figma UI/UX Design Advanced">
</div>
<div class="certification-info">
<h4>Figma UI/UX Design Advanced</h4>
<p>Institution: Udemy</p>
<p><i class="fa fa-calendar"></i> Aug 1, 2024</p>
</div>
</div>
</div>
<!-- certification item end -->
<!-- certification item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/certifications/certificate4.jpg" alt="Figma UI/UX Design Essentials">
</div>
<div class="certification-info">
<h4>Figma UI/UX Design Essentials</h4>
<p>Institution: Udemy</p>
<p><i class="fa fa-calendar"></i> Jul 24, 2024</p>
</div>
</div>
</div>
<!-- certification item end -->
<!-- certification item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/certifications/certificate3.jpg" alt="The Web Developer Bootcamp">
</div>
<div class="certification-info">
<h4>The Web Developer Bootcamp</h4>
<p>Institution: Udemy</p>
<p><i class="fa fa-calendar"></i> Jul 23, 2024</p>
</div>
</div>
</div>
<!-- certification item end -->
<!-- certification item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/certifications/certificate2.jpg" alt="English: Level II">
</div>
<div class="certification-info">
<h4>English: Level II</h4>
<p>Institution: Lang-Lab</p>
<p><i class="fa fa-calendar"></i> Dec 12, 2022</p>
</div>
</div>
</div>
<!-- certification item end -->
<!-- certification item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/certifications/certificate1.jpg" alt="English: Level I">
</div>
<div class="certification-info">
<h4>English: Level I</h4>
<p>Institution: Lang-Lab</p>
<p><i class="fa fa-calendar"></i> Aug 15, 2022</p>
</div>
</div>
</div>
<!-- certification item end -->
</div>
</div>
</div>
<div class="awards-content padd-15">
<div class="row">
<h3 class="title">Awards</h3>
<div class="row">
<!-- award item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/awards/award3.png" alt="Award 3">
</div>
<div class="certification-info">
<h4>Citibanamex Talent Hackathon</h4>
<p><i class="fa fa-calendar"></i> July 2021</p>
<p>Project Name: OBIO Shop</p>
<div class="award-buttons">
<a href="https://github.com/Axolotl-Team-mx/OBIO-shop.git\" target="_blank" class="btn"><i class="fa-brands fa-github"></i>Code</a>
</div>
</div>
</div>
</div>
<!-- award item end -->
<!-- award item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/awards/award2.jpg" alt="Award 2">
</div>
<div class="certification-info">
<h4>Tomato Valley Hackathon</h4>
<p><i class="fa fa-calendar"></i> May 2021</p>
<p>Project Name: BeeCare</p>
<div class="award-buttons">
<a href="https://github.com/Axolotl-Team-mx/BeeCare" target="_blank" class="btn"><i class="fa-brands fa-github"></i>Code</a>
</div>
</div>
</div>
</div>
<!-- award item end -->
<!-- award item start -->
<div class="certification-item padd-15">
<div class="certification-item-inner shadow-dark">
<div class="certification-img">
<img src="/images/awards/award1.jpg" alt="Award 1">
</div>
<div class="certification-info">
<h4>Microsoft Hackaton Hack LATAM</h4>
<p><i class="fa fa-calendar"></i> March 2021</p>
<p>Project Name: AxolotlTeam - EF</p>
<div class="award-buttons">
<a href="https://github.com/iscRamirezAbril/Axolotlteam-EF" target="_blank" class="btn"><i class="fa-brands fa-github"></i>Code</a>
</div>
</div>
</div>
</div>
<!-- award item end -->
</div>
</div>
</section>
<!-- CERTIFICATES SECTION END -->
<!-- SERVICES SECTION START -->
<section class="service section" id="services">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>Services</h2>
</div>
</div>
<div class="row">
<!----- Services Item Start ----->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fa fa-laptop"></i>
</div>
<h4>Web Design</h4>
<p>Crafting stunning, user-centric designs that bring your ideas to life.
</p>
</div>
</div>
<!----- Services Item End ----->
<!----- Services Item Start ----->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fa fa-code"></i>
</div>
<h4>Frontend Development</h4>
<p>Building sleek, responsive, and lightning-fast web interfaces.
</p>
</div>
</div>
<!----- Services Item End ----->
<!----- Services Item Start ----->
<div class="service-item padd-15">
<div class="service-item-inner">
<div class="icon">
<i class="fa fa-cloud"></i>
</div>
<h4>Web Hosting</h4>
<p>Reliable and secure hosting to keep your site online 24/7.
</p>
</div>
</div>
<!----- Services Item End ----->
</div>
</div>
</section>
<!-- SERVICES SECTION END -->
<!-- PORTFOLIO SECTION START -->
<section class="portfolio section" id="portfolio">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>Portfolio / My Recent Work</h2>
</div>
</div>
<div class="row portfolio-list">
<!-- portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="/images/projects/project-15.jpg" alt="portfolio-15">
</div>
<div class="portfolio-info">
<div class="portfolio-title-date">
<h4>Starbucks Coffee Website</h4>
<div class="portfolio-date">
<i class="fa fa-calendar"></i> Jan 2025
</div>
</div>
<p>Figma</p>
<div class="portfolio-buttons">
<a href="https://www.behance.net/gallery/217597193/Starbucks-Coffee-Mexico-Website-Redesign" target="_blank" class="btn"><i class="fa-brands fa-behance"></i>View</a>
<a href="https://www.figma.com/proto/u4IRMNP2QGxseAKkthMhbw/Project-09---Starbucks-Coffee?page-id=22001%3A439661&node-id=22001-439995&p=f&viewport=25%2C139%2C0.65&t=cTNx8ZTAKC9rMWpX-1&scaling=scale-down&content-scaling=fixed&starting-point-node-id=22001%3A439995" target="_blank" class="btn"><i class="fa-solid fa-play"></i>Demo</a>
</div>
</div>
</div>
</div>
<!-- portfolio item end -->
<!-- portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="/images/projects/project-14.jpg" alt="portfolio-14">
</div>
<div class="portfolio-info">
<div class="portfolio-title-date">
<h5>AxolotlCode Website Redesign</h5>
<div class="portfolio-date">
<i class="fa fa-calendar"></i> Dec 2024
</div>
</div>
<p>Figma</p>
<div class="portfolio-buttons">
<a href="https://www.behance.net/gallery/215047351/AxolotlCode-Website-Redesign" target="_blank" class="btn"><i class="fa-brands fa-behance"></i>View</a>
<a href="https://www.figma.com/proto/6WGgBHf04kSYkzekX0aW1K/Project-04---AxolotlCode?page-id=3%3A6&node-id=4177-3962&p=f&viewport=462%2C431%2C1&t=vO4zjIwy3pHgleQu-1&scaling=scale-down&content-scaling=fixed&starting-point-node-id=4177%3A3962" target="_blank" class="btn"><i class="fa-solid fa-play"></i>Demo</a>
</div>
</div>
</div>
</div>
<!-- portfolio item end -->
<!-- portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="/images/projects/project-13.jpg" alt="portfolio-13">
</div>
<div class="portfolio-info">
<div class="portfolio-title-date">
<h5>Fresh Designs Construction</h5>
<div class="portfolio-date">
<i class="fa fa-calendar"></i> Nov 2024
</div>
</div>
<p>Figma, HTML, CSS, JS & Bootstrap</p>
<div class="portfolio-buttons">
<a href="https://www.behance.net/gallery/213678983/Fresh-Designs-Construction-LLC-Redesign" target="_blank" class="btn"><i class="fa-brands fa-behance"></i>View</a>
<a href="https://freshdesignsconstruction.netlify.app/" target="_blank" class="btn"><i class="fa-solid fa-play"></i>Demo</a>
</div>
</div>
</div>
</div>
<!-- portfolio item end -->
<!-- portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="/images/projects/project-12.jpg" alt="portfolio-12">
</div>
<div class="portfolio-info">
<div class="portfolio-title-date">
<h4>UX Ramirez Website</h4>
<div class="portfolio-date">
<i class="fa fa-calendar"></i> Nov 2024
</div>
</div>
<p>Figma, HTML, CSS, JS & Bootstrap</p>
<div class="portfolio-buttons">
<a href="https://www.behance.net/gallery/211848749/UX-Ramirez-Website" target="_blank" class="btn"><i class="fa-brands fa-behance"></i>View</a>
<a href="https://www.uxramirez.com/" target="_blank" class="btn"><i class="fa-solid fa-play"></i>Demo</a>
</div>
</div>
</div>
</div>
<!-- portfolio item end -->
<!-- portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="/images/projects/project-11.jpg" alt="portfolio-11">
</div>
<div class="portfolio-info">
<div class="portfolio-title-date">
<h4>Casa María Silvia</h4>
<div class="portfolio-date">
<i class="fa fa-calendar"></i> Nov 2024
</div>
</div>
<p>Figma, HTML, CSS, JS & Bootstrap</p>
<div class="portfolio-buttons">
<a href="https://www.behance.net/gallery/211358113/Casa-Maria-Silvia-Landing-Page" target="_blank" class="btn"><i class="fa-brands fa-behance"></i>View</a>
<a href="https://casamariasilvia.vercel.app/" target="_blank" class="btn"><i class="fa-solid fa-play"></i>Demo</a>
</div>
</div>
</div>
</div>
<!-- portfolio item end -->
<!-- portfolio item start -->
<div class="portfolio-item padd-15">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="/images/projects/project-10.jpg" alt="portfolio-10">
</div>
<div class="portfolio-info">
<div class="portfolio-title-date">
<h4>BeeCare Website</h4>
<div class="portfolio-date">
<i class="fa fa-calendar"></i> Sep 2024
</div>
</div>
<p>Figma, HTML, CSS, JS & Bootstrap</p>
<div class="portfolio-buttons">
<a href="https://www.behance.net/gallery/207404251/BeeCare-Website-UIUX-Design" target="_blank" class="btn"><i class="fa-brands fa-behance"></i>View</a>
<a href="https://glassesfriends.github.io/BeeCare_website_redesign/" target="_blank" class="btn"><i class="fa-solid fa-play"></i>Demo</a>
</div>
</div>
</div>
</div>
<!-- portfolio item end -->
</div>
</div>
</section>
<!-- PORTFOLIO SECTION END -->
<!-- CONTACT SECTION START -->
<section class="contact section" id="contact">
<div class="container">
<div class="row">
<div class="section-title padd-15">
<h2>Contact Me</h2>
</div>
</div>
<h3 class="contact-title padd-15">Do you have any questions ?</h3>
<h4 class="contact-sub-title padd-15">Here where you can contact me:</h4>
<div class="row">
<!-- Contact info item start -->
<div class="contact-info-item padd-15">
<div class="icon"><i class="fa fa-envelope"></i></div>
<h4>Email</h4>
<p>isc.ramirez_abril@outlook.com</p>
</div>
<!-- Contact info item end -->
<!-- Contact info item start -->
<div class="contact-info-item padd-15">
<div class="icon"><i class="fa-brands fa-whatsapp"></i></div>
<h4>WhatsApp</h4>
<p>(+52) 664 3352557</p>
</div>
<!-- Contact info item end -->
<!-- Contact info item start -->
<div class="contact-info-item padd-15">
<div class="icon"><i class="fa-brands fa-linkedin-in"></i></div>
<h4>Connect with me</h4>
<p>www.linkedin.com/in/abril-ramirez-flores-71a26b275</p>
</div>
<!-- Contact info item end -->
</div>
<h3 class="contact-title padd-15">Send Me An Email</h3>
<h4 class="contact-sub-title padd-15">Fill in the form below</h4>
<!-- Contact form start -->
<div class="row">
<form action="https://formspree.io/f/mjkbrvyo" method="POST" class="contact-form padd-15">
<div class="row">
<div class="form-item col-6 padd-15">
<div class="form-group">
<input type="text" class="form-control" placeholder="Name" name="name">
</div>
</div>
<div class="form-item col-6 padd-15">
<div class="form-group">
<input type="email" class="form-control" placeholder="Email" name="email">
</div>
</div>
</div>
<div class="row">
<div class="form-item col-12 padd-15">
<div class="form-group">
<input type="text" class="form-control" placeholder="Subject" name="subject">
</div>
</div>
</div>
<div class="row">
<div class="form-item col-12 padd-15">
<div class="form-group">
<textarea class="form-control" id="" placeholder="Message" name="message"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="form-item col-12 padd-15">
<button type="submit" class="btn">Send Message</button>
</div>
</div>
</form>
</div>
<!-- Contact form end -->
</div>
</section>
<!-- CONTACT SECTION END -->
</main>
<!-- MAIN END -->
<!-- STYLE SWITCHER START -->
<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>
<h4>Theme Color</h4>
<div class="colors">
<span class="color-1" onclick="setActiveStyle('color-1')" ></span>
<span class="color-2" onclick="setActiveStyle('color-2')" ></span>
<span class="color-3" onclick="setActiveStyle('color-3')" ></span>
<span class="color-4" onclick="setActiveStyle('color-4')" ></span>
<span class="color-5" onclick="setActiveStyle('color-5')" ></span>
</div>
</div>
<!-- STYLE SWITCHER END -->
<!-- CERTIFICATIONS POPUPS -->
<div class="popup-img">
<span><i class="fa-solid fa-xmark"></i></span>
<img src="/images/certifications/certificate1.jpg" alt="">
</div>
<!-- JS FILES -->
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script src="./js/script.js"></script>
<script src="./js/style-switcher.js"></script>
</body>
</html>