-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1110 lines (1110 loc) · 65.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="es">
<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" />
<!-- <meta http-equiv="refresh" content="10;url=index.html"> -->
<!-- SEO -->
<meta name="author" content="Raul Callejas" />
<meta
name="description"
content="Mi portafolio digital en el cual puedes contratar mis servicios como desarrollador web"
/>
<meta
name="keywords"
content="Portafolio digital, portfolio, desarrollo web, Front end, interfaz, Raul Callejas, programación web"
/>
<!-- Favicon -->
<link
rel="shortcut icon"
href="/assets/images/favicon.png"
type="image/x-icon"
/>
<meta name="theme-color" content="#C31717" />
<!-- CSS -->
<link rel="stylesheet" href="/css/normalize.css" />
<link rel="stylesheet" href="/css/bootstrap.css" />
<link rel="stylesheet" href="/css/aos.css" />
<link rel="stylesheet" href="/css/style.css" />
<title>Mi portafolio web</title>
</head>
<body class="container-fluid">
<!-- Barra de navegación -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">
<img class="logo" src="/assets/images/Logo.webp" alt="Logotipo" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="w-100 d-flex justify-content-around navbar-nav">
<li class="p-2 nav-item">
<a href="#about-me" class="nav-link active" aria-current="page"
>Acerca de mi</a
>
</li>
<li class="p-2 nav-item">
<a href="#projects" class="nav-link active">Proyectos</a>
</li>
<li class="p-2 nav-item">
<a href="#contact" class="nav-link active">Contacto</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="contaner-fluid content">
<!-- Presentación -->
<header class="row align-items-center header">
<div class="col-xs-12 col-sm-7">
<span> I´am Front-end Developer </span>
<p data-aos="zoom-in-right" class="text">
Bienvenido seas a mi portafolio digital cyber nauta. Espero te ayude a conocerme mas a fondo y explorar los servicios web que como desarrollador puedo crear con tecnologías de punta y actualizadas para la mejoría de tu negocio con el objetivo de que en un futuro me permitas trabajar contigo.
</p>
<a href="#about-me">¿Quién soy</a>
</div>
<div class="col-xs-12 col-sm-5">
<img
data-aos="zoom-in"
class="justify-self-center img-header"
src="/assets/images/Banner.webp"
alt="Banner"
/>
</div>
</header>
<main class="main">
<!-- ¿Quién soy? -->
<section id="about-me">
<header class="row">
<div class="col-12">
<h2 class="subtitle">Sobre mi</h2>
</div>
</header>
<div class="row">
<div class="col-xm-12 col-sm-4 col-xl-3">
<img
data-aos="fade-down-right"
class="img-professional"
src="/assets/images/Foto_Profesional.webp"
alt="Foto profesional"
/>
</div>
<div data-aos="flip-left" class="col-xm-12 col-sm-8 col-xl-5 text">
Mi nombre es Raul Callejas, Soy un joven apasionado por el mundo de la tecnología 📺 en especial del lado de la web, por ello, me eh encargado de aprender lo mejor y lo más innovador posible de las herramientas y tecnologías más avanzadas y actuales para el desarrollo de una util y atractiva página web. Utilizando así, lenguajes especializados como lo son:
<span class="bold"> HTML, CSS y JavaScript. </span><br />
Gracias a ello, me complace el poder ofrecerte mis servicios como desarrollador, con la seguridad de que tendrás una página la cual mejorara tu negocio y ayudara a posicionarte más alto que la competencia, permitiendo así, obtener una mayor popularidad.
</div>
<div data-aos="zoom-out-down" class="col-xm-12 col-xl-4">
<table class="table-tecnologies">
<tr>
<td class="tecnologies">
HTML<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="24"
height="24"
viewBox="0 0 48 48"
style="fill: #000000"
>
<path
fill="#E65100"
d="M41,5H7l3,34l14,4l14-4L41,5L41,5z"
></path>
<path
fill="#FF6D00"
d="M24 8L24 39.9 35.2 36.7 37.7 8z"
></path>
<path
fill="#FFF"
d="M24,25v-4h8.6l-0.7,11.5L24,35.1v-4.2l4.1-1.4l0.3-4.5H24z M32.9,17l0.3-4H24v4H32.9z"
></path>
<path
fill="#EEE"
d="M24,30.9v4.2l-7.9-2.6L15.7,27h4l0.2,2.5L24,30.9z M19.1,17H24v-4h-9.1l0.7,12H24v-4h-4.6L19.1,17z"
></path>
</svg>
</td>
<td>
<div class="progress">
<div
class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
style="width: 95%"
>
95%
</div>
</div>
</td>
</tr>
<tr>
<td class="tecnologies">
CSS<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="24"
height="24"
viewBox="0 0 48 48"
style="fill: #000000"
>
<path
fill="#0277BD"
d="M41,5H7l3,34l14,4l14-4L41,5L41,5z"
></path>
<path
fill="#039BE5"
d="M24 8L24 39.9 35.2 36.7 37.7 8z"
></path>
<path
fill="#FFF"
d="M33.1 13L24 13 24 17 28.9 17 28.6 21 24 21 24 25 28.4 25 28.1 29.5 24 30.9 24 35.1 31.9 32.5 32.6 21 32.6 21z"
></path>
<path
fill="#EEE"
d="M24,13v4h-8.9l-0.3-4H24z M19.4,21l0.2,4H24v-4H19.4z M19.8,27h-4l0.3,5.5l7.9,2.6v-4.2l-4.1-1.4L19.8,27z"
></path>
</svg>
</td>
<td>
<div class="progress">
<div
class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
style="width: 85%"
>
85%
</div>
</div>
</td>
</tr>
<tr>
<td class="tecnologies">
JavaScript<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="24"
height="24"
viewBox="0 0 48 48"
style="fill: #000000"
>
<path fill="#ffd600" d="M6,42V6h36v36H6z"></path>
<path
fill="#000001"
d="M29.538 32.947c.692 1.124 1.444 2.201 3.037 2.201 1.338 0 2.04-.665 2.04-1.585 0-1.101-.726-1.492-2.198-2.133l-.807-.344c-2.329-.988-3.878-2.226-3.878-4.841 0-2.41 1.845-4.244 4.728-4.244 2.053 0 3.528.711 4.592 2.573l-2.514 1.607c-.553-.988-1.151-1.377-2.078-1.377-.946 0-1.545.597-1.545 1.377 0 .964.6 1.354 1.985 1.951l.807.344C36.452 29.645 38 30.839 38 33.523 38 36.415 35.716 38 32.65 38c-2.999 0-4.702-1.505-5.65-3.368L29.538 32.947zM17.952 33.029c.506.906 1.275 1.603 2.381 1.603 1.058 0 1.667-.418 1.667-2.043V22h3.333v11.101c0 3.367-1.953 4.899-4.805 4.899-2.577 0-4.437-1.746-5.195-3.368L17.952 33.029z"
></path>
</svg>
</td>
<td>
<div class="progress">
<div
class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
style="width: 75%"
>
75%
</div>
</div>
</td>
</tr>
<tr>
<td class="tecnologies">
Bootstrap<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="24"
height="24"
viewBox="0 0 48 48"
style="fill: #000000"
>
<path
fill="#673ab7"
d="M42,37c0,2.762-2.238,5-5,5H11c-2.761,0-5-2.238-5-5V11c0-2.762,2.239-5,5-5h26c2.762,0,5,2.238,5,5 V37z"
></path>
<path
fill="#fff"
d="M33.03,25.6c-0.65-0.9-1.59-1.52-2.8-1.85c0,0,1.02-0.37,1.94-1.75c0.55-0.88,0.83-1.94,0.83-3.18 c0-2.15-0.78-3.8-2.34-4.93C29.1,12.76,27.34,12,24.35,12H15v24h10.43c2.83-0.02,4.96-0.63,6.41-1.8c1.44-1.19,2.16-2.95,2.16-5.3 C34,27.6,33.68,26.5,33.03,25.6z M21,16c0,0,4.17,0,4.25,0c1.52,0,2.75,1.23,2.75,2.75c0,1.52-1.23,2.75-2.75,2.75 c-0.08,0-4.25,0-4.25,0V16z M26,32h-5v-6h5c1.66,0,3,1.34,3,3C29,30.66,27.66,32,26,32z"
></path>
</svg>
</td>
<td>
<div class="progress">
<div
class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
style="width: 70%"
>
70%
</div>
</div>
</td>
</tr>
<tr>
<td class="tecnologies">
Github<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="24"
height="24"
viewBox="0 0 64 64"
style="fill: #000000"
>
<path
d="M32 6C17.641 6 6 17.641 6 32c0 12.277 8.512 22.56 19.955 25.286-.592-.141-1.179-.299-1.755-.479V50.85c0 0-.975.325-2.275.325-3.637 0-5.148-3.245-5.525-4.875-.229-.993-.827-1.934-1.469-2.509-.767-.684-1.126-.686-1.131-.92-.01-.491.658-.471.975-.471 1.625 0 2.857 1.729 3.429 2.623 1.417 2.207 2.938 2.577 3.721 2.577.975 0 1.817-.146 2.397-.426.268-1.888 1.108-3.57 2.478-4.774-6.097-1.219-10.4-4.716-10.4-10.4 0-2.928 1.175-5.619 3.133-7.792C19.333 23.641 19 22.494 19 20.625c0-1.235.086-2.751.65-4.225 0 0 3.708.026 7.205 3.338C28.469 19.268 30.196 19 32 19s3.531.268 5.145.738c3.497-3.312 7.205-3.338 7.205-3.338.567 1.474.65 2.99.65 4.225 0 2.015-.268 3.19-.432 3.697C46.466 26.475 47.6 29.124 47.6 32c0 5.684-4.303 9.181-10.4 10.4 1.628 1.43 2.6 3.513 2.6 5.85v8.557c-.576.181-1.162.338-1.755.479C49.488 54.56 58 44.277 58 32 58 17.641 46.359 6 32 6zM33.813 57.93C33.214 57.972 32.61 58 32 58 32.61 58 33.213 57.971 33.813 57.93zM37.786 57.346c-1.164.265-2.357.451-3.575.554C35.429 57.797 36.622 57.61 37.786 57.346zM32 58c-.61 0-1.214-.028-1.813-.07C30.787 57.971 31.39 58 32 58zM29.788 57.9c-1.217-.103-2.411-.289-3.574-.554C27.378 57.61 28.571 57.797 29.788 57.9z"
></path>
</svg>
</td>
<td>
<div class="progress">
<div
class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
style="width: 60%"
>
60%
</div>
</div>
</td>
</tr>
<tr>
<td class="tecnologies">
Python<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="24"
height="24"
viewBox="0 0 48 48"
style="fill: #000000"
>
<path
fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z"
></path>
<path
fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z"
></path>
</svg>
</td>
<td>
<div class="progress">
<div
class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
style="width: 50%"
>
50%
</div>
</div>
</td>
</tr>
<tr>
<td class="tecnologies">
PHP<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="24"
height="24"
viewBox="0 0 16 16"
style="fill: #000000"
>
<path
fill="#dcd5f2"
d="M8,11.5c-4.065,0-7.5-1.832-7.5-4s3.435-4,7.5-4s7.5,1.832,7.5,4S12.065,11.5,8,11.5z"
></path>
<path
fill="#8b75a1"
d="M8,4c4.125,0,7,1.845,7,3.5S12.125,11,8,11S1,9.155,1,7.5S3.875,4,8,4 M8,3C3.582,3,0,5.015,0,7.5 S3.582,12,8,12s8-2.015,8-4.5S12.418,3,8,3L8,3z"
></path>
<path
fill="#36404d"
d="M4.525 7C4.758 7 4.924 7.076 4.98 7.147 4.99 7.16 5.017 7.194 4.989 7.312 4.901 7.681 4.826 8 3.729 8H3.634l.188-1H4.525M4.525 6H2.992l-.75 4H3.22l.188-1h.321c1.256 0 1.978-.381 2.233-1.457C6.182 6.619 5.452 6 4.525 6L4.525 6zM12.525 7c.233 0 .399.076.455.147.01.013.037.047.009.165C12.901 7.681 12.826 8 11.729 8h-.094l.188-1H12.525M12.525 6h-1.534l-.75 4h.978l.188-1h.321c1.256 0 1.978-.381 2.233-1.457C14.182 6.619 13.452 6 12.525 6L12.525 6z"
></path>
<g>
<path
fill="#36404d"
d="M9.689,6.242C9.5,6.07,9.168,6,8.673,6H8.044l0.258-1H7.295L6.459,9h1.019l0.39-2h0.176h0.629 C8.742,7,8.801,7.002,8.85,7.004L8.468,9h1.04l0.348-1.926C9.93,6.692,9.874,6.412,9.689,6.242z"
></path>
</g>
</svg>
</td>
<td>
<div class="progress">
<div
class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
style="width: 40%"
>
40%
</div>
</div>
</td>
</tr>
</table>
</div>
</div>
</section>
<!-- Carrusel de proyectos -->
<section id="projects">
<header class="row">
<div class="col-12">
<h2 class="subtitle">Proyectos</h2>
</div>
</header>
<div class="row">
<div class="col-12">
<div
id="carouselProjects"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselProjects"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselProjects"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselProjects"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<!-- Computer Learning -->
<div class="carousel-item active">
<a
href="https://ComputerLearning5.blogspot.com"
target="_blank"
>
<picture class="d-block w-100 img-carousel">
<source
media="(min-width: 450px) and (max-width: 799px)"
srcset="/assets/images/Blog_Tablet.webp"
/>
<source
media="(max-width: 450px)"
srcset="/assets/images/Blog_Mobile.webp"
/>
<img
media="(min-width: 800px)"
src="/assets/images/Blog_Desktop.webp"
/>
</picture>
<div class="carousel-caption d-none d-md-block text">
<h5 class="bold">Computer Learning</h5>
<p>
Blog personal creado con el objetivo de compartir el
conocimiento acerca de la tecnología.
</p>
</div>
<p class="mobile">Blog de tecnología</p>
</a>
</div>
<!-- Desarrollo Front end -->
<div class="carousel-item">
<a
href="https://github.com/ScorpionCallejas/Desarrollo-FE"
target="_blank"
>
<picture class="d-block w-100 img-carousel">
<source
media="(min-width: 450px) and (max-width: 800px)"
srcset="/assets/images/Frontend_Tablet.webp"
/>
<source
media="(max-width: 450px)"
srcset="/assets/images/Frontend_Mobile.webp"
/>
<img
media="(min-width: 800px)"
src="/assets/images/Frontend_Desktop.webp"
/>
</picture>
<div class="carousel-caption d-none d-md-block text">
<h5 class="bold">Front end</h5>
<p>
Blog acerca del desarrollo web de lado de la interfaz.
</p>
</div>
<p class="mobile">Blog de desarrollo web</p>
</a>
</div>
<!-- Portafolio web grupal -->
<div class="carousel-item">
<a
href="https://github.com/ScorpionCallejas/Servicios-Web"
target="_blank"
>
<picture class="d-block w-100 img-carousel">
<source
media="(min-width: 450px) and (max-width: 800px)"
srcset="/assets/images/ServiciosWeb_Tablet.webp"
/>
<source
media="(max-width: 450px)"
srcset="/assets/images/ServiciosWeb_Mobile.webp"
/>
<img
media="(min-width: 800px)"
src="/assets/images/ServiciosWeb_Desktop.webp"
/>
</picture>
<div class="carousel-caption d-none d-md-block text">
<h5 class="bold">Servicios Web</h5>
<p>
Portafolio web grupal en donde se veran los
conocimientos de algunos de nuestros coolaboradores.
</p>
</div>
<p class="mobile">Portafolio Grupal</p>
</a>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselProjects"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselProjects"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</section>
<!-- Contacto -->
<section id="contact">
<header class="row">
<div class="col-12">
<h2 class="subtitle">Contacto</h2>
</div>
</header>
<div data-aos="zoom-in" class="row">
<div
class="col-xs-12 col-sm-6 col-xl-5 d-flex align-items-center justify-content-center"
>
<!-- Tarjeta de presentación -->
<div class="target-presentation p-2">
<img
class="img-presentation"
src="/assets/images/img-target.webp"
alt="Foto de mi"
/>
<div class="text-container">
<p class="text">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 50 50"
style="fill: #1717c3"
>
<path
d="M28.292 1.326C27.226 1.116 26.127 1 25 1c-4.71 0-8.98 1.93-12.06 5.04l6.92 5.592L28.292 1.326zM18.595 13.178L11.62 7.55C9.35 10.43 8 14.07 8 18c0 2.281.452 4.487 1.304 6.534L18.595 13.178zM22.608 11.432C23.353 11.159 24.154 11 25 11c3.87 0 7 3.13 7 7 0 .338-.032.667-.078.992l7.772-9.499c-2.058-3.539-5.348-6.268-9.285-7.595L22.608 11.432zM27.341 24.591C26.608 24.851 25.822 25 25 25c-3.87 0-7-3.13-7-7 0-.354.034-.7.084-1.039l-7.803 9.537c.386.666.809 1.315 1.289 1.932.37.5.87 1.14 1.45 1.89 1.267 1.633 2.959 3.816 4.59 6.164L27.341 24.591zM18.778 38.215c2.082 3.184 3.852 6.497 4.172 9.055.14.99.99 1.73 1.99 1.73 1.02 0 1.87-.75 1.99-1.75.61-4.83 6.57-12.48 9.78-16.6.56-.72 1.05-1.35 1.5-1.94C40.65 25.69 42 21.89 42 18c0-2.322-.471-4.536-1.319-6.555L18.778 38.215z"
></path>
</svg>
México
</p>
<br />
<p class="text">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="currentColor"
class="bi bi-whatsapp"
viewBox="0 0 16 16"
>
<path
d="M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.898 7.898 0 0 0 13.6 2.326zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.729.729 0 0 0-.529.247c-.182.198-.691.677-.691 1.654 0 .977.71 1.916.81 2.049.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z"
/>
</svg>
<a href="tel:+525530852322">Marcar al telefono</a>
</p>
<br />
<p class="text">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="currentColor"
class="bi bi-envelope-plus-fill"
viewBox="0 0 16 16"
>
<path
d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555ZM0 4.697v7.104l5.803-3.558L0 4.697ZM6.761 8.83l-6.57 4.026A2 2 0 0 0 2 14h6.256A4.493 4.493 0 0 1 8 12.5a4.49 4.49 0 0 1 1.606-3.446l-.367-.225L8 9.586l-1.239-.757ZM16 4.697v4.974A4.491 4.491 0 0 0 12.5 8a4.49 4.49 0 0 0-1.965.45l-.338-.207L16 4.697Z"
/>
<path
d="M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-3.5-2a.5.5 0 0 0-.5.5v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1a.5.5 0 0 0-.5-.5Z"
/>
</svg>
<a
href="mailto:[email protected]?subject=Hola,%20mucho%20gusto%20el%20poder%20contactarlo..."
>
Enviar mail
</a>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-xl-7">
<!-- Formulario de contacto con la api de formspree -->
<form
action="https://formspree.io/f/xpzbyepy"
method="post"
id="form_contact"
>
<h3 class="form_title">Formulario de contacto</h3>
<input
name="name"
required
type="text"
id="name"
class="form_input text"
/>
<label for="name" class="form_label text">Nombre</label>
<input
name="email"
required
type="email"
id="email"
class="form_input text"
/>
<label for="email" class="form_label text">Correo</label>
<textarea
name="message"
required
rows="5"
id="message"
class="form_input text textarea"
></textarea>
<label for="message" class="form_label text label_textarea"
>Asunto</label
>
<button type="submit" class="form_submit" id="refresh">
Enviar
</button>
</form>
</div>
<div
data-aos="zoom-in"
class="row row-cols-2 row-cols-md-4 row-cols-xl-5 row-cols-xxl-6 col-12"
>
<h3 class="col-12 subtitle-2">Redes sociales</h3>
<!-- Facebook -->
<div class="col">
<a
href="https://www.facebook.com/raul.jovany.1"
target="_blank"
>
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 48 48"
style="fill: #000000"
>
<linearGradient
id="Ld6sqrtcxMyckEl6xeDdMa_uLWV5A9vXIPu_gr1"
x1="9.993"
x2="40.615"
y1="9.993"
y2="40.615"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#2aa4f4"></stop>
<stop offset="1" stop-color="#007ad9"></stop>
</linearGradient>
<path
fill="url(#Ld6sqrtcxMyckEl6xeDdMa_uLWV5A9vXIPu_gr1)"
d="M24,4C12.954,4,4,12.954,4,24s8.954,20,20,20s20-8.954,20-20S35.046,4,24,4z"
></path>
<path
fill="#fff"
d="M26.707,29.301h5.176l0.813-5.258h-5.989v-2.874c0-2.184,0.714-4.121,2.757-4.121h3.283V12.46 c-0.577-0.078-1.797-0.248-4.102-0.248c-4.814,0-7.636,2.542-7.636,8.334v3.498H16.06v5.258h4.948v14.452 C21.988,43.9,22.981,44,24,44c0.921,0,1.82-0.084,2.707-0.204V29.301z"
></path>
</svg>
</a>
</div>
<!-- Instagram -->
<div class="col">
<a
href="https://www.instagram.com/scorpion_morales/"
target="_blank"
>
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 100 100"
style="fill: #000000"
>
<path
fill="#4e5fd8"
d="M82,31v38c0,2.01-0.46,3.92-1.27,5.62c-1.12,2.33-2.92,4.29-5.15,5.58C73.65,81.35,71.4,82,69,82H31 c-1.47,0-2.89-0.25-4.21-0.7h-0.01c-2.43-0.83-4.52-2.35-6.05-4.34C19.02,74.76,18,72,18,69V31c0-0.59,0.04-1.17,0.12-1.74 c0.1-0.77,0.27-1.52,0.51-2.24C20.3,21.79,25.21,18,31,18h38c0.43,0,0.85,0.02,1.26,0.06h0.03c0.77,0.08,1.51,0.22,2.23,0.43 c4.7,1.32,8.33,5.21,9.24,10.07c0.09,0.45,0.15,0.91,0.19,1.38C81.99,30.29,82,30.64,82,31z"
></path>
<path
fill="#7550cc"
d="M81.76,28.56c-0.91-4.86-4.54-8.75-9.24-10.07c-0.74-0.16-1.48-0.3-2.23-0.43h-0.03 c-0.13-0.023-0.262-0.038-0.391-0.06H46.1c-10.24,1.72-19.73,5.64-27.98,11.26C18.04,29.83,18,30.41,18,31v38 c0,3,1.02,5.76,2.73,7.96c1.53,1.99,3.62,3.51,6.05,4.34h0.01C28.11,81.75,29.53,82,31,82h38c2.4,0,4.65-0.65,6.58-1.8 c2.23-1.29,4.03-3.25,5.15-5.58C81.54,72.92,82,71.01,82,69V31c0-0.36-0.01-0.71-0.05-1.06C81.91,29.47,81.85,29.01,81.76,28.56z"
></path>
<path
fill="#9c32c8"
d="M82,31v38c0,2.01-0.46,3.92-1.27,5.62c-1.12,2.33-2.92,4.29-5.15,5.58C73.65,81.35,71.4,82,69,82H31 c-1.47,0-2.89-0.25-4.21-0.7h-0.01c-2.43-0.83-4.52-2.35-6.05-4.34C19.02,74.76,18,72,18,69V38.03C28.95,29.25,42.86,24,58,24 c8.4,0,16.42,1.62,23.76,4.56c0.09,0.45,0.15,0.91,0.19,1.38C81.99,30.29,82,30.64,82,31z"
></path>
<path
fill="#d515a3"
d="M82,36.29V69c0,2.01-0.46,3.92-1.27,5.62c-1.12,2.33-2.92,4.29-5.15,5.58C73.65,81.35,71.4,82,69,82 H31c-1.47,0-2.89-0.25-4.21-0.7h-0.01c-2.43-0.83-4.52-2.35-6.05-4.34C19.02,74.76,18,72,18,69V47.41C28.28,37.26,42.41,31,58,31 C66.57,31,74.71,32.89,82,36.29z"
></path>
<path
fill="#ec007a"
d="M82,44.14V69c0,2.01-0.46,3.92-1.27,5.62c-1.12,2.33-2.92,4.29-5.15,5.58C73.65,81.35,71.4,82,69,82 H31c-1.47,0-2.89-0.25-4.21-0.7h-0.01c-2.43-0.83-4.52-2.35-6.05-4.34C19.02,74.76,18,72,18,69V58.01C27.12,45.86,41.64,38,58,38 C66.69,38,74.87,40.22,82,44.14z"
></path>
<path
fill="#ff492e"
d="M82,66.07V69c0,3-1.02,5.76-2.73,7.96c-1.53,1.99-3.62,3.51-6.05,4.34h-0.01 C71.89,81.75,70.47,82,69,82H31c-2.4,0-4.65-0.65-6.58-1.8c-2.23-1.29-4.03-3.25-5.15-5.58C18.46,72.92,18,71.01,18,69V54.54 C25.38,48.57,34.77,45,45,45C60.74,45,74.5,53.45,82,66.07z"
></path>
<path
fill="#ff7a02"
d="M79.27,76.96c-1.53,1.99-3.62,3.51-6.05,4.34h-0.01C71.89,81.75,70.47,82,69,82H31 c-2.4,0-4.65-0.65-6.58-1.8c-2.23-1.29-4.03-3.25-5.15-5.58C18.46,72.92,18,71.01,18,69v-4.81C24.6,56.72,34.25,52,45,52 C61.03,52,74.61,62.48,79.27,76.96z"
></path>
<path
fill="#ffa823"
d="M73.21,81.3C71.89,81.75,70.47,82,69,82H31c-2.4,0-4.65-0.65-6.58-1.8 c-2.23-1.29-4.03-3.25-5.15-5.58C24.1,65.34,33.81,59,45,59C58.71,59,70.2,68.51,73.21,81.3z"
></path>
<path
fill="#ffca58"
d="M66.17,82H31c-2.4,0-4.65-0.65-6.58-1.8C27.57,71.9,35.6,66,45,66C55.07,66,63.56,72.77,66.17,82z"
></path>
<path
fill="#ffdb73"
d="M58.75,82h-27.5c2.32-5.3,7.6-9,13.75-9S56.43,76.7,58.75,82z"
></path>
<path
fill="#fff"
d="M60,26.5H40c-7.444,0-13.5,6.056-13.5,13.5v20c0,7.444,6.056,13.5,13.5,13.5h20 c7.444,0,13.5-6.056,13.5-13.5V40C73.5,32.556,67.444,26.5,60,26.5z M69.5,60c0,5.238-4.262,9.5-9.5,9.5H40 c-5.238,0-9.5-4.262-9.5-9.5V40c0-5.238,4.262-9.5,9.5-9.5h20c5.238,0,9.5,4.262,9.5,9.5V60z M50,61.5 c-6.341,0-11.5-5.159-11.5-11.5S43.659,38.5,50,38.5S61.5,43.659,61.5,50S56.341,61.5,50,61.5z M50,42.5 c-4.136,0-7.5,3.365-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.365,7.5-7.5S54.136,42.5,50,42.5z M65.5,37.5c0,1.657-1.343,3-3,3 s-3-1.343-3-3s1.343-3,3-3S65.5,35.843,65.5,37.5z"
></path>
<path
fill="#1f212b"
d="M60,74H40c-7.72,0-14-6.28-14-14V40c0-7.72,6.28-14,14-14h20c7.72,0,14,6.28,14,14v20 C74,67.72,67.72,74,60,74z M40,27c-7.168,0-13,5.832-13,13v20c0,7.168,5.832,13,13,13h20c7.168,0,13-5.832,13-13V40 c0-7.168-5.832-13-13-13H40z M60,70H40c-5.514,0-10-4.486-10-10V40c0-5.514,4.486-10,10-10h20c5.514,0,10,4.486,10,10v20 C70,65.514,65.514,70,60,70z M40,31c-4.963,0-9,4.037-9,9v20c0,4.963,4.037,9,9,9h20c4.963,0,9-4.037,9-9V40c0-4.963-4.037-9-9-9H40 z M50,62c-6.617,0-12-5.383-12-12s5.383-12,12-12s12,5.383,12,12S56.617,62,50,62z M50,39c-6.065,0-11,4.935-11,11s4.935,11,11,11 s11-4.935,11-11S56.065,39,50,39z M50,58c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S54.411,58,50,58z M50,43 c-3.859,0-7,3.141-7,7s3.141,7,7,7s7-3.141,7-7S53.859,43,50,43z M62.5,41c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5 s3.5,1.57,3.5,3.5S64.43,41,62.5,41z M62.5,35c-1.379,0-2.5,1.121-2.5,2.5s1.121,2.5,2.5,2.5s2.5-1.121,2.5-2.5S63.879,35,62.5,35z M69,83H31c-7.72,0-14-6.28-14-14V31c0-7.72,6.28-14,14-14h38c7.72,0,14,6.28,14,14v38C83,76.72,76.72,83,69,83z M31,19 c-6.617,0-12,5.383-12,12v38c0,6.617,5.383,12,12,12h38c6.617,0,12-5.383,12-12V31c0-6.617-5.383-12-12-12H31z"
></path>
</svg>
</a>
</div>
<!-- Telegram -->
<div class="col">
<a href="https://t.me/Computer_Learning5" target="_blank">
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 48 48"
style="fill: #000000"
>
<linearGradient
id="BiF7D16UlC0RZ_VqXJHnXa_oWiuH0jFiU0R_gr1"
x1="9.858"
x2="38.142"
y1="9.858"
y2="38.142"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#33bef0"></stop>
<stop offset="1" stop-color="#0a85d9"></stop>
</linearGradient>
<path
fill="url(#BiF7D16UlC0RZ_VqXJHnXa_oWiuH0jFiU0R_gr1)"
d="M44,24c0,11.045-8.955,20-20,20S4,35.045,4,24S12.955,4,24,4S44,12.955,44,24z"
></path>
<path
d="M10.119,23.466c8.155-3.695,17.733-7.704,19.208-8.284c3.252-1.279,4.67,0.028,4.448,2.113 c-0.273,2.555-1.567,9.99-2.363,15.317c-0.466,3.117-2.154,4.072-4.059,2.863c-1.445-0.917-6.413-4.17-7.72-5.282 c-0.891-0.758-1.512-1.608-0.88-2.474c0.185-0.253,0.658-0.763,0.921-1.017c1.319-1.278,1.141-1.553-0.454-0.412 c-0.19,0.136-1.292,0.935-1.745,1.237c-1.11,0.74-2.131,0.78-3.862,0.192c-1.416-0.481-2.776-0.852-3.634-1.223 C8.794,25.983,8.34,24.272,10.119,23.466z"
opacity=".05"
></path>
<path
d="M10.836,23.591c7.572-3.385,16.884-7.264,18.246-7.813c3.264-1.318,4.465-0.536,4.114,2.011 c-0.326,2.358-1.483,9.654-2.294,14.545c-0.478,2.879-1.874,3.513-3.692,2.337c-1.139-0.734-5.723-3.754-6.835-4.633 c-0.86-0.679-1.751-1.463-0.71-2.598c0.348-0.379,2.27-2.234,3.707-3.614c0.833-0.801,0.536-1.196-0.469-0.508 c-1.843,1.263-4.858,3.262-5.396,3.625c-1.025,0.69-1.988,0.856-3.664,0.329c-1.321-0.416-2.597-0.819-3.262-1.078 C9.095,25.618,9.075,24.378,10.836,23.591z"
opacity=".07"
></path>
<path
fill="#fff"
d="M11.553,23.717c6.99-3.075,16.035-6.824,17.284-7.343c3.275-1.358,4.28-1.098,3.779,1.91 c-0.36,2.162-1.398,9.319-2.226,13.774c-0.491,2.642-1.593,2.955-3.325,1.812c-0.833-0.55-5.038-3.331-5.951-3.984 c-0.833-0.595-1.982-1.311-0.541-2.721c0.513-0.502,3.874-3.712,6.493-6.21c0.343-0.328-0.088-0.867-0.484-0.604 c-3.53,2.341-8.424,5.59-9.047,6.013c-0.941,0.639-1.845,0.932-3.467,0.466c-1.226-0.352-2.423-0.772-2.889-0.932 C9.384,25.282,9.81,24.484,11.553,23.717z"
></path>
</svg>
</a>
</div>
<!-- Twitter -->
<div class="col">
<a href="https://twitter.com/ComputerLearDV" target="_blank">
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 48 48"
style="fill: #000000"
>
<linearGradient
id="_osn9zIN2f6RhTsY8WhY4a_5MQ0gPAYYx7a_gr1"
x1="10.341"
x2="40.798"
y1="8.312"
y2="38.769"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#2aa4f4"></stop>
<stop offset="1" stop-color="#007ad9"></stop>
</linearGradient>
<path
fill="url(#_osn9zIN2f6RhTsY8WhY4a_5MQ0gPAYYx7a_gr1)"
d="M46.105,11.02c-1.551,0.687-3.219,1.145-4.979,1.362c1.789-1.062,3.166-2.756,3.812-4.758 c-1.674,0.981-3.529,1.702-5.502,2.082C37.86,8.036,35.612,7,33.122,7c-4.783,0-8.661,3.843-8.661,8.582 c0,0.671,0.079,1.324,0.226,1.958c-7.196-0.361-13.579-3.782-17.849-8.974c-0.75,1.269-1.172,2.754-1.172,4.322 c0,2.979,1.525,5.602,3.851,7.147c-1.42-0.043-2.756-0.438-3.926-1.072c0,0.026,0,0.064,0,0.101c0,4.163,2.986,7.63,6.944,8.419 c-0.723,0.198-1.488,0.308-2.276,0.308c-0.559,0-1.104-0.063-1.632-0.158c1.102,3.402,4.299,5.889,8.087,5.963 c-2.964,2.298-6.697,3.674-10.756,3.674c-0.701,0-1.387-0.04-2.065-0.122C7.73,39.577,12.283,41,17.171,41 c15.927,0,24.641-13.079,24.641-24.426c0-0.372-0.012-0.742-0.029-1.108C43.483,14.265,44.948,12.751,46.105,11.02"
></path>
</svg>
</a>
</div>
<!-- Github -->
<div class="col">
<a href="https://github.com/scorpionCallejas/" target="_blank">
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 64 64"
style="fill: #000000"
>
<path
d="M32 6C17.641 6 6 17.641 6 32c0 12.277 8.512 22.56 19.955 25.286-.592-.141-1.179-.299-1.755-.479V50.85c0 0-.975.325-2.275.325-3.637 0-5.148-3.245-5.525-4.875-.229-.993-.827-1.934-1.469-2.509-.767-.684-1.126-.686-1.131-.92-.01-.491.658-.471.975-.471 1.625 0 2.857 1.729 3.429 2.623 1.417 2.207 2.938 2.577 3.721 2.577.975 0 1.817-.146 2.397-.426.268-1.888 1.108-3.57 2.478-4.774-6.097-1.219-10.4-4.716-10.4-10.4 0-2.928 1.175-5.619 3.133-7.792C19.333 23.641 19 22.494 19 20.625c0-1.235.086-2.751.65-4.225 0 0 3.708.026 7.205 3.338C28.469 19.268 30.196 19 32 19s3.531.268 5.145.738c3.497-3.312 7.205-3.338 7.205-3.338.567 1.474.65 2.99.65 4.225 0 2.015-.268 3.19-.432 3.697C46.466 26.475 47.6 29.124 47.6 32c0 5.684-4.303 9.181-10.4 10.4 1.628 1.43 2.6 3.513 2.6 5.85v8.557c-.576.181-1.162.338-1.755.479C49.488 54.56 58 44.277 58 32 58 17.641 46.359 6 32 6zM33.813 57.93C33.214 57.972 32.61 58 32 58 32.61 58 33.213 57.971 33.813 57.93zM37.786 57.346c-1.164.265-2.357.451-3.575.554C35.429 57.797 36.622 57.61 37.786 57.346zM32 58c-.61 0-1.214-.028-1.813-.07C30.787 57.971 31.39 58 32 58zM29.788 57.9c-1.217-.103-2.411-.289-3.574-.554C27.378 57.61 28.571 57.797 29.788 57.9z"
></path>
</svg>
</a>
</div>
<!-- Linkedin -->
<div class="col">
<a
href="https://www.linkedin.com/in/raul-callejas-front-end"
target="_blank"
>
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 64 64"
style="fill: #000000"
>
<radialGradient
id="jAVUMfCM1liBjYZwQpghOa"
cx="32"
cy="31.5"
r="31.259"
gradientUnits="userSpaceOnUse"
spreadMethod="reflect"
>
<stop offset="0" stop-color="#c5f1ff"></stop>
<stop offset=".35" stop-color="#cdf3ff"></stop>
<stop offset=".907" stop-color="#e4faff"></stop>
<stop offset="1" stop-color="#e9fbff"></stop>
</radialGradient>
<path
fill="url(#undefined)"
d="M58,54c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2h2.5c1.925,0,3.5-1.575,3.5-3.5 S62.425,43,60.5,43H50c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h8c1.65,0,3-1.35,3-3c0-1.65-1.35-3-3-3H42v-6h18 c2.335,0,4.22-2.028,3.979-4.41C63.77,19.514,61.897,18,59.811,18H58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2h0.357 c1.308,0,2.499-0.941,2.63-2.242C61.137,10.261,59.966,9,58.5,9h-14C43.672,9,43,8.328,43,7.5S43.672,6,44.5,6h3.857 c1.308,0,2.499-0.941,2.63-2.242C51.137,2.261,49.966,1,48.5,1L15.643,1c-1.308,0-2.499,0.941-2.63,2.242 C12.863,4.739,14.034,6,15.5,6H19c1.105,0,2,0.895,2,2c0,1.105-0.895,2-2,2H6.189c-2.086,0-3.958,1.514-4.168,3.59 C1.78,15.972,3.665,18,6,18h2.5c1.933,0,3.5,1.567,3.5,3.5c0,1.933-1.567,3.5-3.5,3.5H5.189c-2.086,0-3.958,1.514-4.168,3.59 C0.78,30.972,2.665,33,5,33h17v11H6c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3h0c1.105,0,2,0.895,2,2c0,1.105-0.895,2-2,2H4.189 c-2.086,0-3.958,1.514-4.168,3.59C-0.22,59.972,1.665,62,4,62h53.811c2.086,0,3.958-1.514,4.168-3.59C62.22,56.028,60.335,54,58,54z"
></path>
<linearGradient
id="jAVUMfCM1liBjYZwQpghOb_118979_gr1"
x1="32"
x2="32"
y1="59.381"
y2="15.381"
gradientUnits="userSpaceOnUse"
spreadMethod="reflect"
>
<stop offset="0" stop-color="#155cde"></stop>
<stop offset=".278" stop-color="#1f7fe5"></stop>
<stop offset=".569" stop-color="#279ceb"></stop>
<stop offset=".82" stop-color="#2cafef"></stop>
<stop offset="1" stop-color="#2eb5f0"></stop>
</linearGradient>
<path
fill="url(#jAVUMfCM1liBjYZwQpghOb_118979_gr1)"
d="M50,12H14c-2.209,0-4,1.791-4,4v36c0,2.209,1.791,4,4,4h36c2.209,0,4-1.791,4-4V16 C54,13.791,52.209,12,50,12z"
></path>
<path
fill="#fff"
d="M19 28h2c1.105 0 2 .895 2 2v17c0 1.105-.895 2-2 2h-2c-1.105 0-2-.895-2-2V30C17 28.895 17.895 28 19 28zM19.981 25h-.033C18.158 25 17 23.664 17 22c0-1.706 1.195-3 3.019-3 1.823 0 2.948 1.294 2.981 3C23 23.664 21.842 25 19.981 25zM45 49h-2c-1.105 0-2-.895-2-2v-9.372c0-2.749-1.506-4.624-4.239-4.624-1.953 0-3.133 1.265-3.626 2.485C32.954 35.929 33 37.14 33 37.75V47c0 1.105-.888 2-1.993 2H29c-1.105 0-2-.895-2-2V30c0-1.105.895-2 2-2h2.007c1.105 0 2 .895 2 2v1.021C33.911 29.625 35.564 28 39.173 28 43.646 28 47 30.563 47 36.842V47C47 48.105 46.105 49 45 49z"
></path>
</svg>
</a>
</div>
<!-- YouTube -->
<div class="col">
<a
href="https://www.youtube.com/channel/UCPadNn6b0Eb1dbIZESHbA8w/"
target="_blank"
>
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 48 48"
style="fill: #000000"
>
<linearGradient
id="PgB_UHa29h0TpFV_moJI9a_9a46bTk3awwI_gr1"
x1="9.816"
x2="41.246"
y1="9.871"
y2="41.301"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#f44f5a"></stop>
<stop offset=".443" stop-color="#ee3d4a"></stop>
<stop offset="1" stop-color="#e52030"></stop>
</linearGradient>
<path
fill="url(#PgB_UHa29h0TpFV_moJI9a_9a46bTk3awwI_gr1)"
d="M45.012,34.56c-0.439,2.24-2.304,3.947-4.608,4.267C36.783,39.36,30.748,40,23.945,40 c-6.693,0-12.728-0.64-16.459-1.173c-2.304-0.32-4.17-2.027-4.608-4.267C2.439,32.107,2,28.48,2,24s0.439-8.107,0.878-10.56 c0.439-2.24,2.304-3.947,4.608-4.267C11.107,8.64,17.142,8,23.945,8s12.728,0.64,16.459,1.173c2.304,0.32,4.17,2.027,4.608,4.267 C45.451,15.893,46,19.52,46,24C45.89,28.48,45.451,32.107,45.012,34.56z"
></path>
<path
d="M32.352,22.44l-11.436-7.624c-0.577-0.385-1.314-0.421-1.925-0.093C18.38,15.05,18,15.683,18,16.376 v15.248c0,0.693,0.38,1.327,0.991,1.654c0.278,0.149,0.581,0.222,0.884,0.222c0.364,0,0.726-0.106,1.04-0.315l11.436-7.624 c0.523-0.349,0.835-0.932,0.835-1.56C33.187,23.372,32.874,22.789,32.352,22.44z"
opacity=".05"
></path>
<path
d="M20.681,15.237l10.79,7.194c0.689,0.495,1.153,0.938,1.153,1.513c0,0.575-0.224,0.976-0.715,1.334 c-0.371,0.27-11.045,7.364-11.045,7.364c-0.901,0.604-2.364,0.476-2.364-1.499V16.744C18.5,14.739,20.084,14.839,20.681,15.237z"
opacity=".07"
></path>
<path
fill="#fff"
d="M19,31.568V16.433c0-0.743,0.828-1.187,1.447-0.774l11.352,7.568c0.553,0.368,0.553,1.18,0,1.549 l-11.352,7.568C19.828,32.755,19,32.312,19,31.568z"
></path>
</svg>
</a>
</div>
<!-- Blogger -->
<div class="col">
<a
href="https://ComputerLearning5.blogspot.com"
target="_blank"
>
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 48 48"
style="fill: #000000"
>
<path
fill="#ff6f00"
d="M37,42H11c-2.761,0-5-2.239-5-5V11c0-2.761,2.239-5,5-5h26c2.761,0,5,2.239,5,5v26 C42,39.761,39.761,42,37,42z"
></path>
<path
fill="#fff"
d="M33.5,22h-1c-0.828,0-1.5-0.672-1.5-1.5V20c0-3.866-3.134-7-7-7h-4c-3.866,0-7,3.134-7,7v8 c0,3.866,3.134,7,7,7h8c3.866,0,7-3.134,7-7v-4.5C35,22.672,34.328,22,33.5,22z M20,19h5c0.553,0,1,0.448,1,1s-0.447,1-1,1h-5 c-0.553,0-1-0.448-1-1S19.447,19,20,19z M28,29h-8c-0.553,0-1-0.448-1-1s0.447-1,1-1h8c0.553,0,1,0.448,1,1S28.553,29,28,29z"
></path>
</svg>
</a>
</div>
<!-- TikTok -->
<div class="col">
<a href="https://vm.tiktok.com/ZMLVcLgMy/" target="_blank">
<svg
class="social-media"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="240"
height="240"
viewBox="0 0 48 48"
style="fill: #000000"
>
<path
fill="#212121"
fill-rule="evenodd"
d="M10.904,6h26.191C39.804,6,42,8.196,42,10.904v26.191 C42,39.804,39.804,42,37.096,42H10.904C8.196,42,6,39.804,6,37.096V10.904C6,8.196,8.196,6,10.904,6z"
clip-rule="evenodd"
></path>
<path
fill="#ec407a"
fill-rule="evenodd"
d="M29.208,20.607c1.576,1.126,3.507,1.788,5.592,1.788v-4.011 c-0.395,0-0.788-0.041-1.174-0.123v3.157c-2.085,0-4.015-0.663-5.592-1.788v8.184c0,4.094-3.321,7.413-7.417,7.413 c-1.528,0-2.949-0.462-4.129-1.254c1.347,1.376,3.225,2.23,5.303,2.23c4.096,0,7.417-3.319,7.417-7.413L29.208,20.607L29.208,20.607 z M30.657,16.561c-0.805-0.879-1.334-2.016-1.449-3.273v-0.516h-1.113C28.375,14.369,29.331,15.734,30.657,16.561L30.657,16.561z M19.079,30.832c-0.45-0.59-0.693-1.311-0.692-2.053c0-1.873,1.519-3.391,3.393-3.391c0.349,0,0.696,0.053,1.029,0.159v-4.1 c-0.389-0.053-0.781-0.076-1.174-0.068v3.191c-0.333-0.106-0.68-0.159-1.03-0.159c-1.874,0-3.393,1.518-3.393,3.391 C17.213,29.127,17.972,30.274,19.079,30.832z"
clip-rule="evenodd"
></path>
<path
fill="#fff"
fill-rule="evenodd"
d="M28.034,19.63c1.576,1.126,3.507,1.788,5.592,1.788v-3.157 c-1.164-0.248-2.194-0.856-2.969-1.701c-1.326-0.827-2.281-2.191-2.561-3.788h-2.923v16.018c-0.007,1.867-1.523,3.379-3.393,3.379 c-1.102,0-2.081-0.525-2.701-1.338c-1.107-0.558-1.866-1.705-1.866-3.029c0-1.873,1.519-3.391,3.393-3.391 c0.359,0,0.705,0.056,1.03,0.159V21.38c-4.024,0.083-7.26,3.369-7.26,7.411c0,2.018,0.806,3.847,2.114,5.183 c1.18,0.792,2.601,1.254,4.129,1.254c4.096,0,7.417-3.319,7.417-7.413L28.034,19.63L28.034,19.63z"
clip-rule="evenodd"
></path>