-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
929 lines (915 loc) · 44.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags -->
<title>Portfolio | Code By Jose</title>
<link rel="icon" href="Index-Uploads/Icons/hello-kitty.svg" />
<meta charset="UTF-8" />
<meta property="og:title" content="Portfolio | Code By Jose" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://codebyjose.com/" />
<meta
property="og:image"
content="https://codebyjose.com/Index-Uploads/Images/Blue-Portfolio.png"
/>
<meta
property="og:description"
content="Software Developer Portfolio | Code By Jose"
/>
<meta property="og:site_name" content="Code By Jose" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS and JS -->
<link rel="stylesheet" type="text/css" href="portfolio.css" />
<script src="portfolio.js" defer></script>
<!-- Fonts and Icons -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
<script
src="https://kit.fontawesome.com/6b31c68f8b.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-CSN8G33F57"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-CSN8G33F57");
</script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=AW-16452414597"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "AW-16452414597");
</script>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<!-- Header -->
<header>
<a href="/" class="Title">Code By Jose</a>
<!-- Navigation Bar -->
<nav>
<a href="#Home"
><i class="fa-solid fa-house" style="color: #d2d9d8"></i>Home</a
>
<a href="#aboutmeSec"
><i class="fa-solid fa-user" style="color: #d2d9d8"></i>About</a
>
<a href="#projects"
><i class="fa-solid fa-folder" style="color: #d2d9d8"></i>Projects</a
>
<!--<a href="#experiences">Experiences</a>--->
<a href="#contact"
><i class="fa-solid fa-message" style="color: #d2d9d8"></i>Contact</a
>
<a href="JoseCortes-Resume.pdf" download="JoseCortes-Resume.pdf"
><i class="fa-solid fa-cloud-arrow-down" style="color: #d2d9d8"></i
>Resume</a
>
</nav>
<span class="MenuButton" onclick="openNav()"
><i class="fa-solid fa-bars"></i
></span>
</header>
<!-- Body -->
<body>
<div id="hamburger-menu" class="hamburger-menu">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"
>×</a
>
<a class="Title" href="/">Code By Jose</a>
<a href="#Home" onclick="closeNav()">Home</a>
<a href="#aboutmeSec" onclick="closeNav()">About</a>
<a href="#projects" onclick="closeNav()">Projects</a>
<a href="#contact" onclick="closeNav()">Contact</a>
<a
href="https://codebyjose.com/JoseCortes-Resume.pdf"
download="JoseCortes-Resume.pdf"
>Resume</a
>
</div>
<main>
<!-- Home Section -->
<section class="HomeSection" id="Home">
<!-- Profile Section -->
<div class="square" id="sqrMe">
<img
src="Index-Uploads/Images/Me2.jpg"
alt="Profile Image"
draggable="false"
class="ProfileIMG"
/>
<h1 class="Title">Code By Jose</h1>
<span class="sub-text">Computer Science Undergraduate</span>
<span class="sub-text">California State University of Fresno</span>
<div class="LMButton">
<a href="#aboutmeSec" class="button">Discover More</a>
<a
href="JoseCortes-Resume.pdf"
download="JoseCortes-Resume.pdf"
class="button"
>
Resume
</a>
</div>
</div>
<!-- Recent Projects Section -->
<div class="square" id="sqrPro">
<img
src="Index-Uploads/Images/Menu-Signage.png"
alt="Projects Image"
draggable="false"
class="ProjectsIMG"
/>
<h1 class="Title">Recent Projects</h1>
<div class="sub-text">
For Fresno State Student Housing, digital signage is used to display
weekly menu information to residents. The digital menu, resembling a
restaurant menu, is created using Figma for mockups and Adobe tools
for design, with HTML, CSS, JavaScript, and JSON for development.
Menu items are stored and updated in JSON format, and the design is
responsive for 16:9 TV screens. Challenges included ensuring
readability and aesthetics on TV screens. Features include dynamic
display of menu items, real-time updates, and a user-friendly layout
that's visually appealing and easy to maintain.
</div>
<div class="LMButton">
<a href="#projects" class="button">See More</a>
</div>
</div>
<!-- Skills Section -->
<div class="square" id="sqrSki">
<img
src="Index-Uploads/Images/Coding.jpg"
alt="Skills Image"
draggable="false"
class="SkillIMG"
/>
<h1 class="Title">Technical Skills</h1>
<div class="skills">
<div class="row">
<svg
class="SkillCon"
search-term="C++"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0,0,256,256"
width="250px"
height="250px"
fill-rule="nonzero"
>
<g
fill="#d2d9d8"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(5.12,5.12)">
<path
d="M43.91016,12.00391l-16.83984,-9.46484c-1.27734,-0.71484 -2.86328,-0.71484 -4.14062,0l-16.83984,9.46484c-1.28906,0.72266 -2.08984,2.07813 -2.08984,3.53125v18.92969c0,1.45313 0.80078,2.80859 2.08984,3.53125l16.83984,9.46484c0.64063,0.35938 1.35547,0.53906 2.07031,0.53906c0.71484,0 1.42969,-0.17969 2.07031,-0.53906l16.83984,-9.46484c1.28906,-0.72266 2.08984,-2.07812 2.08984,-3.53125v-18.92969c0,-1.45312 -0.80078,-2.80859 -2.08984,-3.53125zM25,37c-6.61719,0 -12,-5.38281 -12,-12c0,-6.61719 5.38281,-12 12,-12c3.78125,0 7.27344,1.75391 9.54297,4.74219l-4.38281,2.53516c-1.31641,-1.44141 -3.1875,-2.27734 -5.16016,-2.27734c-3.85937,0 -7,3.14063 -7,7c0,3.85938 3.14063,7 7,7c1.97266,0 3.84375,-0.83594 5.16016,-2.27734l4.38281,2.53516c-2.26953,2.98828 -5.76172,4.74219 -9.54297,4.74219zM37,26h-2v2h-2v-2h-2v-2h2v-2h2v2h2zM44,26h-2v2h-2v-2h-2v-2h2v-2h2v2h2z"
></path>
</g>
</g>
</svg>
<svg
class="SkillCon"
search-term="HTML"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0,0,256,256"
width="250px"
height="250px"
fill-rule="nonzero"
>
<g
fill="#d2d9d8"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(5.12,5.12)">
<path
d="M45.27344,2.32422c-0.1875,-0.20703 -0.45703,-0.32422 -0.73828,-0.32422h-39.07031c-0.28125,0 -0.55078,0.11719 -0.73828,0.32422c-0.19141,0.20703 -0.28516,0.48438 -0.25781,0.76563l3.51953,39.42578c0.03516,0.41406 0.32422,0.75781 0.72266,0.875l16.01172,4.57031c0.08594,0.02734 0.17969,0.03906 0.27344,0.03906c0.09375,0 0.18359,-0.01172 0.27344,-0.03906l16.02344,-4.57031c0.39844,-0.11719 0.68359,-0.46094 0.72266,-0.875l3.51563,-39.42578c0.02734,-0.28125 -0.06641,-0.55859 -0.25781,-0.76562zM36.84766,15.91797h-18.8125l0.44922,5.08984h17.91016l-1.34375,15.04297l-10.05859,3.03906l-0.09766,-0.03125l-9.94141,-3.01172l-0.54297,-6.12891h4.87109l0.21094,2.37891l5.55859,1.16406l5.45703,-1.16406l0.58203,-6.4375h-17.04297l-1.32422,-14.80469h24.55859z"
></path>
</g>
</g>
</svg>
<svg
class="SkillCon"
search-term="CSS"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0,0,256,256"
width="250px"
height="250px"
fill-rule="evenodd"
>
<g
fill="#d2d9d8"
fill-rule="evenodd"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(5.12,5.12)">
<path
d="M42,6l-3,34l-14,4l-14,-4l-3,-34zM16.80078,28h4l0.09766,2.5l4.10156,1.39844l4.10156,-1.39844l0.29688,-4.5h-8.79687l-0.20312,-4h9.20313l0.29688,-4h-13.79687l-0.30078,-4h18.30078l-0.5,8l-0.70312,11.5l-7.89844,2.60156l-7.89844,-2.60156z"
></path>
</g>
</g>
</svg>
<svg
class="SkillCon"
search-term="JavaScript"
id="Layer_1"
data-name="Layer 1"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 250 250.01"
>
<defs>
<style>
.cls-1 {
fill: #d2d9d8;
stroke-width: 0px;
}
</style>
</defs>
<path
class="cls-1"
d="m232.8,0C160.92,0,89.05,0,17.17,0,6.51,0,0,6.55,0,17.2,0,53.14,0,89.08,0,125.01c0,36.03,0,72.07,0,108.1,0,10.23,6.62,16.88,16.89,16.88,72.07.02,144.15.02,216.22,0,10.26,0,16.87-6.66,16.87-16.91,0-71.97,0-143.94,0-215.91,0-10.64-6.52-17.17-17.19-17.17Zm-95.91,156.26c-.05,0-.11,0-.16,0,0,12.87.05,25.75-.03,38.62-.03,5.08-1.18,9.97-3.36,14.58-4.38,9.26-12.07,14.01-21.8,15.94-17.9,3.54-35.54-4.56-44.74-20.37-1.18-2.04-1.09-2.97,1.05-4.16,4.81-2.67,9.51-5.55,14.14-8.53,1.65-1.06,2.37-1.03,3.51.71,3.87,5.95,9.13,9.57,16.6,9.29,6.5-.25,9.99-3.33,10.67-9.84.25-2.4.31-4.83.31-7.25.02-23.04.05-46.08-.04-69.12,0-2.35.48-3.15,2.98-3.07,6,.2,12.01.16,18,.01,2.22-.06,2.95.47,2.92,2.83-.12,13.46-.06,26.91-.06,40.37Zm87.81,48.11c-3.51,11.92-12.72,17.81-24.2,20.51-7.72,1.82-15.56,1.8-23.35.1-12.4-2.71-21.36-9.94-27.48-20.93-.69-1.23-.69-1.88.59-2.71,5.04-3.25,10.03-6.57,14.97-9.98,1.25-.86,1.68-.51,2.39.6,1.47,2.27,3.01,4.52,4.74,6.59,5.78,6.88,13.2,8.76,21.72,6.62,4.25-1.07,7.28-3.75,8.07-8.21.82-4.62-.47-8.66-4.43-11.52-4.98-3.6-10.77-5.63-16.32-8.08-5.41-2.39-10.7-4.95-15.39-8.61-10.47-8.18-14.74-22.1-10.71-34.95,3.6-11.46,14.55-19.59,27.64-20.48,1.64-.11,3.29-.17,4.93-.25,12.97-.04,23.27,4.87,30.36,16.02,1.06,1.67,1.04,2.46-.75,3.53-4.64,2.79-9.2,5.72-13.67,8.77-1.6,1.09-2.26.94-3.23-.71-3.37-5.71-8.4-8.36-15.08-7.65-4.09.44-7.26,2.36-8.58,6.33-1.38,4.17-.62,8.08,2.81,11.12,3.46,3.07,7.76,4.66,11.91,6.48,6.72,2.94,13.46,5.83,19.67,9.83,14.74,9.49,17.15,24.73,13.37,37.56Z"
/>
</svg>
<svg
class="SkillCon"
search-term="JSON"
id="Layer_1"
data-name="Layer 1"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 250 328.51"
>
<defs>
<style>
.cls-1 {
fill: #d2d9d8;
stroke-width: 0px;
}
</style>
</defs>
<path
class="cls-1"
d="m249.97,99.13c0-2.35-.71-3.94-2.35-5.58-30.36-30.27-60.67-60.59-90.96-90.93-.77-.77-2.01-1.26-2.07-2.62H0c.08,1.27.24,2.54.24,3.8.01,106.91.03,213.82-.07,320.73,0,3.21.72,3.98,3.96,3.98,80.72-.1,161.44-.1,242.16-.02,2.79,0,3.71-.51,3.71-3.57-.1-75.26-.09-150.53-.03-225.79ZM57.19,190.88h-.04c0,8.87.01,17.74,0,26.6,0,3.77-.6,7.45-1.99,10.96-3.34,8.47-14.65,13.16-23.07,9.63-.48-.2-1.26-.25-1.22-.83.22-3.18.5-6.36.89-9.53.09-.71.82-.32,1.32-.21.83.17,1.68.32,2.53.39,6.25.54,8.65-1.36,9.37-7.59.28-2.43.41-4.9.42-7.35.03-16.88.06-33.76-.03-50.64-.01-2.18.43-3.1,2.76-2.83,2.93.34,6.86-1.24,8.55.64,1.46,1.62.49,5.47.5,8.33.03,7.48.01,14.96.01,22.44Zm33.05,46.73c-6.62,1.96-13.08,1.19-19.34-1.59-1.75-.77-2.68-1.69-1.85-3.9.96-2.57,1.42-5.33,2.16-8.26,2.69,1.77,5.33,3.02,8.27,3.54,4.78.83,9.36.6,12.36-3.77,3.07-4.47,2.71-9.28.11-13.9-1.6-2.84-4.11-4.89-6.68-6.82-3.33-2.51-6.65-5.02-9.43-8.15-11.36-12.78-5.97-31.71,10.16-35.35,5.32-1.2,10.61-.73,15.61,1.73,1.57.77,2.18,1.77,1.59,3.57-.89,2.71-1.59,5.48-2.46,8.52-2.62-1.83-4.92-3.06-7.68-3.35-5.12-.53-8.52.89-10.38,4.5-1.95,3.77-1.29,8.89,1.66,12.26,1.84,2.1,4.1,3.71,6.35,5.36,3.8,2.78,7.5,5.65,10.32,9.51,9.61,13.16,4.11,31.71-10.77,36.12Zm70.74-39.23c-.17,9.31-.8,18.56-4.67,27.23-4.1,9.19-11.19,13.72-20.28,13.11-6.3-.42-10.74-3.83-14.02-8.92-3.72-5.77-5.36-12.27-6.18-18.99-1.4-11.44-1.22-22.81,2.25-33.92,1.58-5.04,4-9.63,7.94-13.31,7.93-7.39,19.85-6.58,26.59,1.89,4.89,6.15,6.63,13.51,7.64,21.07.52,3.91.9,7.86.72,11.83Zm51.49,39.69c-7.88-.11-7.89,0-10.72-7.17-5.4-13.67-10.77-27.35-16.17-41.02-.26-.65-.16-1.56-.9-1.72,0,15.62-.06,31.29.07,46.97.02,2.46-.65,3.15-3.01,2.93-2.53-.24-5.92.82-7.43-.46-1.78-1.51-.56-4.99-.56-7.61-.06-22.45,0-44.9-.09-67.34,0-2.42.47-3.25,3.08-3.19,7.74.17,7.74.04,10.59,7.36,5.36,13.8,10.72,27.6,16.1,41.39.24.62.24,1.44,1.16,1.88,0-2.43,0-4.74,0-7.05-.06-13.68-.08-27.36-.22-41.05-.02-1.94.44-2.51,2.46-2.53,8.58-.06,8.58-.14,8.58,8.29,0,22.45-.04,44.9.06,67.34.01,2.43-.61,3.02-3,2.98Zm10.21-139.5c-22.66,0-45.32-.04-67.97.06-2.55.01-3.41-.44-3.4-3.23.12-26.29.07-52.58.07-78.24,26.98,26.98,54.24,54.24,81.42,81.41h-10.12Z"
/>
<path
class="cls-1"
d="m127.2,198.97c.32-7.23.41-14.51,2.91-21.46,1.4-3.89,3.06-7.97,7.99-7.99,4.98-.02,6.84,4.12,7.92,8.03,3.88,14.08,3.95,28.28,0,42.35-1.05,3.76-2.77,7.84-7.62,7.97-4.99.13-6.72-3.9-8.2-7.75-2.61-6.8-2.68-13.99-2.99-21.16Z"
/>
</svg>
<svg
class="SkillCon"
search-term="PHP"
id="Layer_1"
data-name="Layer 1"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 300 299.89"
>
<defs>
<style>
.cls-1 {
fill: #d2d9d8;
stroke-width: 0px;
}
</style>
</defs>
<path
class="cls-1"
d="m96.18,135.15c-4.26-.94-8.55-.95-12.86-1.05-3.16-.07-4.39,1.47-4.91,4.34-1.23,6.68-2.67,13.33-3.97,20-1.45,7.47-1.39,7.51,6.21,7.45,2.47-.29,4.93-.63,7.4-.86,6.92-.64,10.56-4.87,12.41-11.16,1.13-3.86,1.68-7.76,1.52-11.79-.15-3.86-1.95-6.09-5.79-6.94Z"
/>
<path
class="cls-1"
d="m226.33,134.99c-4.11-.97-8.25-.76-12.4-.86-2.49-.06-3.63,1.2-4.08,3.44-1.66,8.31-3.31,16.62-5.02,24.92-.45,2.17.4,3.18,2.5,3.26,1.49.06,2.99.01,3.9.01,14.47-.42,18.98-3.71,21.31-15.31.42-2.11.67-4.28.77-6.43.25-5.76-1.42-7.71-6.99-9.02Z"
/>
<path
class="cls-1"
d="m299.93,25.95c-.02-19.14-6.61-25.84-25.53-25.87C191.74-.03,109.07-.02,26.41.07,6.38.09.12,6.55.07,26.92c-.1,41.02-.03,82.04-.03,123.06,0,41.61-.12,83.23.06,124.84.07,17.86,6.96,24.93,24.62,24.96,83.26.14,166.52.13,249.78.01,18.83-.03,25.42-6.79,25.44-25.95.1-82.64.1-165.27,0-247.91Zm-180.86,122.13c-2.68,16.62-13.37,32.18-36,31.31-12.95-.5-12.98.02-15.51,12.65-.52,2.61-.97,5.23-1.46,7.84-4,0-8.03-.29-11.99.09-3.46.33-4.77-.67-4.01-4.09,4.58-22.47,9.19-44.93,13.73-67.4,1.6-7.91,1.52-7.93,9.39-7.93,7.49,0,14.97-.03,22.46,0,17.17.1,26.11,10.6,23.38,27.52Zm50.51,31.23c-14.61-.2-12.57,1.6-10.04-11.47,1.58-8.17,3.3-16.31,4.86-24.48,1.15-6.07-.63-8.39-6.68-9.06-12.54-1.38-12.82-1.15-15.21,11-1.96,9.96-4.09,19.89-5.93,29.87-.57,3.07-2.01,4.16-5.04,4.14-14.66-.08-12.23.91-9.84-11.36,4.42-22.7,8.94-45.38,13.41-68.07h16c.21,5.57-1.59,10.82-2.74,16.16-.79,3.66.27,4.62,3.88,4.59,5.97-.06,11.99-.7,17.89.94,9.37,2.6,13.14,7.87,11.5,17.37-2.09,12.13-4.73,24.16-6.98,36.26-.57,3.05-2.05,4.15-5.08,4.11Zm80.53-28.43c-.63,1.88-1.23,3.78-1.91,5.65-5.12,14.25-15.82,22.32-30.08,22.67-3.81.09-7.65.29-11.44.02-3.91-.28-5.72,1.17-6.32,5.09-.81,5.23-2.14,10.39-3.25,15.57h-16c3.75-19.27,7.49-38.53,11.25-57.8,1.15-5.88,2.41-11.74,3.49-17.63.51-2.77,1.9-3.95,4.75-3.92,9.83.1,19.67-.2,29.49.14,10.06.35,16.84,5.54,20.02,15.21v15Z"
/>
</svg>
<svg
class="SkillCon"
search-term="Microsoft"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0,0,256,256"
width="250px"
height="250px"
fill-rule="nonzero"
>
<g
fill="#d2d9d8"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(5.12,5.12)">
<path
d="M44.257,5.333l-12.412,-3.3c-0.192,-0.051 -0.396,-0.044 -0.582,0.021l-25.588,8.8c-0.404,0.139 -0.675,0.519 -0.675,0.946v24.2v1.2v1.065v0.01c0,0.363 0.286,0.737 0.675,0.871l25.588,8.8c0.105,0.035 0.215,0.054 0.325,0.054c0.086,0 0.173,-0.011 0.257,-0.033l12.412,-3.3c0.438,-0.117 0.743,-0.514 0.743,-0.967v-37.4c0,-0.453 -0.305,-0.85 -0.743,-0.967zM30,10.827v29.532l-21.847,-2.883l7.191,-2.637c0.394,-0.144 0.656,-0.519 0.656,-0.939v-20.185z"
></path>
</g>
</g>
</svg>
<svg
class="SkillCon"
search-term="Google"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0,0,256,256"
width="100px"
height="100px"
fill-rule="nonzero"
>
<g
fill="#d2d9d8"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(5.12,5.12)">
<path
d="M25.99609,48c-12.68359,0 -23.00391,-10.31641 -23.00391,-23c0,-12.68359 10.32031,-23 23.00391,-23c5.74609,0 11.24609,2.12891 15.49219,5.99609l0.77344,0.70703l-7.58594,7.58594l-0.70312,-0.60156c-2.22656,-1.90625 -5.05859,-2.95703 -7.97656,-2.95703c-6.76562,0 -12.27344,5.50391 -12.27344,12.26953c0,6.76563 5.50781,12.26953 12.27344,12.26953c4.87891,0 8.73438,-2.49219 10.55078,-6.73828h-11.55078v-10.35547l22.55078,0.03125l0.16797,0.79297c1.17578,5.58203 0.23438,13.79297 -4.53125,19.66797c-3.94531,4.86328 -9.72656,7.33203 -17.1875,7.33203z"
></path>
</g>
</g>
</svg>
<svg
class="SkillCon"
search-term="Adobe"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0,0,256,256"
width="100px"
height="100px"
fill-rule="nonzero"
>
<g
fill="#d2d9d8"
fill-rule="nonzero"
stroke="none"
stroke-width="1"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="10"
stroke-dasharray=""
stroke-dashoffset="0"
font-family="none"
font-weight="none"
font-size="none"
text-anchor="none"
style="mix-blend-mode: normal"
>
<g transform="scale(5.12,5.12)">
<path
d="M47,5v40l-16.381,-40zM17.762,36.579h7.238l3.429,8.421h7.238l-10.667,-26.199zM3,5v40l16.381,-40z"
></path>
</g>
</g>
</svg>
</div>
</div>
</div>
</section>
<!-- Scroll to next section -->
<a
href="#aboutmeSec"
class="scroll-to-button"
aria-label="Scroll to next section"
>
<i class="fa-solid fa-angles-down"></i>
</a>
<!-- About Section -->
<section class="AboutSection" id="aboutmeSec">
<div class="PicABO">
<div class="AboutPicture">
<div class="PicSQR"></div>
</div>
<div class="SumSquare">
<h1 class="Title">About Me</h1>
<div class="sub-text">
<p>
Hello! I'm Jose Cortes, currently in my final year studying
Computer Science at California State University of Fresno. Over
the course of my academic journey, I've sharpened my coding and
debugging skills, delved deep into data structures and
recursion, and nurtured a foundational understanding of
theoretical computer science concepts. This blend of academics
and hands-on experience has empowered me with proficiency in
languages like C++, CSS, PHP, HTML, JS, and JSON.
</p>
<p>
Professionally, I've been serving as a Web Designer at Fresno
State Student Housing. Here, I've tackled projects like the
'Dynamic Dining Hall Menu Integration' and 'Weekly Dining Hall
Menu Updater', using my expertise to elevate user experience and
optimize web pages.
</p>
<p>
When it comes to work, I enjoy problem-solving and creative
projects that challenge me to think outside the box. Beyond the
screen, the people in my life keep me grounded and motivated.
When I'm not coding, I'm diving into 3D modeling, battling it
out in Pokémon, trying my hand at embroidery, snapping photos,
or just kicking back with some good music.
</p>
<p>
If you'd like to get in touch with me, you can find me on my
socials, or you can send me an email or fill out the contact
form at the bottom of this page.
</p>
</div>
</div>
</div>
<div class="EduSQR">
<h1 class="Title">Education</h1>
<div class="sub-text">
<p>
I am pursuing a Bachelor of Science in Computer Science at
California State University of Fresno and expect to graduate in
Fall 2024.
</p>
<div>Relevant Coursework:</div>
<div class="Courses">
<p>CSCI 1 - Critical Thinking and Computer Science</p>
<div class="Info">
In this course, I gained an overview of the field of computer
science with a focus on critical thinking skills. I learned
problem-solving strategies, algorithm design, and data
abstraction, as well as gained an introduction to hardware and
theoretical limitations of computers. Additionally, the course
explored issues that arise from the growing role of computers in
society. By taking this course, I developed critical thinking
skills and an understanding of the impact of technology on
society.
</div>
</div>
<div class="Courses">
<p>CSCI 40 - Introduction to Programming</p>
<div class="Info">
In this course, I was introduced to problem solving and
algorithm development using a high-level programming language. I
learned about procedural and data abstraction, program design,
coding, debugging, testing, and documentation. After taking this
course, I had developed basic programming skills and was able to
design and implement simple programs.
</div>
</div>
<div class="Courses">
<p>CSCI 41 - Introduction to Data Structures</p>
<div class="Info">
This course built on the programming skills I developed in CSCI
40 and covered programming methodology, program correctness, and
review of data types. The course focused on data structures such
as linear and nonlinear structures, files, and recursion. I
learned about searching and sorting, as well as implementation
of data structures. By taking this course, I developed an
understanding of fundamental data structures and the ability to
design and implement more complex programs.
</div>
</div>
<div class="Courses">
<p>CSCI 60 - Foundations of Computer Science</p>
<div class="Info">
In this course, I gained a foundation for further study in
computer science. I learned about abstraction, iteration,
induction, recursion, complexity of programs, data models, and
logic. After taking this course, I had developed a strong
theoretical understanding of computer science, which may help me
to design more efficient and effective programs in the future.
</div>
</div>
<div class="Courses">
<p>CSCI 80 or 112 - Introduction to Computer Systems</p>
<div class="Info">
This course provided me with an in-depth understanding of
computer systems. It covered computer arithmetic, the Von
Neumann architecture, and the intricacies of instruction sets,
data types, and formats. I learned about the organization of
registers, the Arithmetic Logic Unit (ALU), and the memory
hierarchy. The course also delved into I/O Bus organization and
the study of assembly languages. Through this course, I
developed a foundational knowledge of how higher-level languages
are implemented on computer systems.
</div>
</div>
<div class="Courses">
<p>CSCI 115 - Algorithms and Data Structures</p>
<div class="Info">
Building upon my previous knowledge of data structures, this
course reviewed and expanded on this topic. It included in-depth
studies of graphs, search paths, and spanning trees. I learned
various methods for algorithm design and analysis, especially
for sorting, merging, and searching algorithms. Key topics also
included memory management, hashing, and dynamic storage
allocation. This course was crucial in integrating my
understanding of data structures into comprehensive system
design.
</div>
</div>
<div class="Courses">
<p>CSCI 117 - Structures of Programming Languages</p>
<div class="Info">
This course introduced me to the general concepts and paradigms
of various programming languages. I explored different aspects
such as scope, binding rules, applications, and implementations
of language concepts. The course provided exposure to a range of
languages including Haskell, Prolog, Kernel, and Oz. It greatly
enhanced my understanding of the structural and functional
differences between these languages and their practical
applications.
</div>
</div>
</div>
</div>
</section>
<!-- Scroll to next section -->
<a
href="#experience"
class="scroll-to-button"
aria-label="Scroll to next section"
>
<i class="fa-solid fa-angles-down"></i>
</a>
<!-- Experience Section -->
<section class="ExperienceSection" id="experience">
<h1 class="Title" id="AltTitle">Experience</h1>
<div class="ExperienceContainer">
<div class="Experience">
<div class="ExpTitle">
<span class="JobTitle"
>Web Designer/ Developer with Fresno State Student Housing</span
>
<span class="JobDate">May 2023 - Present</span>
</div>
<div class="ExpInfo">
<span>
As the Web Designer for Fresno State Student Housing, I play a
critical role in enhancing the digital presence and user
experience for our campus community. Under the direct
supervision of the Marketing and Summer Conference Coordinator,
my responsibilities are tailored to support the vibrant and
dynamic environment of Student Housing through strategic web
design and maintenance.
</span>
<span style="font-weight: bold"
>My responsibilities include:</span
>
<ul>
<li>
Overseeing the planning, development, and routine maintenance
of the Student Housing website to align with marketing
objectives and user expectations.
</li>
<li>
Designing and implementing user-friendly features and
functionalities, focusing on the ease of navigation,
interaction, and accessibility, to foster an engaging online
experience.
</li>
<li>
Collaborating closely with the Student Housing and Marketing
teams to ensure the website's content, usability, and design
are up-to-date and reflect the brand's values and aesthetics.
</li>
<li>
Troubleshooting and resolving website operational issues,
maintaining high performance and availability, and managing
technical aspects of the CMS.
</li>
<li>
Enhancing the visual appeal and functionality of the website
through graphic design, layout adjustments, and content
updates.
</li>
<li>
Maintaining digital signage content, ensuring the information
is current and visually appealing to enhance resident
engagement.
</li>
</ul>
</div>
</div>
<!--
<div class="ExpMetric">
<i class="fa-solid fa-user"></i>
<div class="MetricInfo">
<span
>Increased the amount of visitors by 10% through the
implementation of creating more resident oriented content.</span
>
</div>
</div>-->
</div>
</section>
<!-- Scroll to next section -->
<a
href="#projects"
class="scroll-to-button"
aria-label="Scroll to next section"
>
<i class="fa-solid fa-angles-down"></i>
</a>
<!-- Projects Section -->
<section class="ProjectsSection" id="projects">
<h1 class="Title" id="AltTitle">Projects</h1>
<input type="text" id="searchInput" placeholder="Search projects..." />
<div class="CardContainer" id="card-container"></div>
</section>
<section id="contact">
<footer>
<section class="contactform">
<h1 class="Title">Get In Touch</h1>
<form
action="/contact.php"
method="post"
name="contact-form"
id="contact-form"
>
<label for="name">Name:</label><br />
<input
type="text"
id="name"
name="name"
placeholder="Your Name..."
required
/>
<label for="email">Email:</label><br />
<input
type="email"
id="email"
name="email"
placeholder="Your Email..."
required
/>
<label for="subject">Subject:</label><br />
<input
type="text"
id="subject"
name="subject"
placeholder="Subject..."
/>
<label for="message">Message:</label><br />
<textarea
id="message"
name="message"
placeholder="Type your message here..."
required
></textarea>
<input id="submit" type="submit" value="Submit" />
</form>
</section>
<a href="mailto:josehcortes02@gmail.com" class="email">
<svg
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 384 270.6"
style="enable-background: new 0 0 384 270.6"
xml:space="preserve"
>
<style type="text/css">
.st0 {
fill: #d2d9d8;
}
</style>
<g
id="Layer_2_00000114763708521023959650000004666386688558890654_"
>
<g id="Layer_1-2">
<g>
<path
class="st0"
d="M0,27.3c0.7-2,1.4-4,2.2-6c0.8-2.2,2-2.3,3.5-0.6c0.7,0.7,1.4,1.4,2.1,2.1c36.2,36.4,72.5,72.8,108.7,109.1
c2.7,2.7,2.7,4.1,0,6.8c-22.4,22.3-44.8,44.6-67,67.1C35.4,220,21.2,234.3,7.1,248.6c-3.5,3.6-4,3.4-5.6-1.4
c-0.4-1.3-1-2.6-1.4-3.9V27.3z"
/>
<path
class="st0"
d="M384,243.3c-0.5,1.4-1.1,2.8-1.6,4.2c-1.6,4.4-2,4.5-5.2,1.3c-6.6-6.6-13.2-13.2-19.9-19.9l-85.9-86.3
c-1.6-1.6-3.1-3.3-4.8-4.8c-2.1-1.8-2-3.2,0-5.2c9.5-9.4,18.9-18.9,28.4-28.3c27.2-27.3,54.4-54.7,81.6-82.1
c3.9-3.9,4.2-3.8,6,1.5c0.4,1.2,0.9,2.3,1.3,3.5L384,243.3z"
/>
<path
class="st0"
d="M192.4,0c52.1,0,104.2,0,156.3,0c4-0.1,8,0.4,11.8,1.6c4.2,1.4,4.4,1.9,1.3,5c-14.5,14.5-28.9,29-43.4,43.5
c-38.3,38.4-76.6,76.8-114.8,115.3c-7.9,8-15.3,7.9-23.3,0L22.6,7c-3.8-3.8-3.6-4,1.6-5.7c3.6-1,7.4-1.5,11.1-1.4
C87.7,0,140.1,0,192.4,0z"
/>
<path
class="st0"
d="M191.9,270.5c-52.1,0-104.2,0-156.3,0c-3.9,0.1-7.7-0.4-11.5-1.4c-5-1.5-5.1-1.9-1.6-5.5
c19.8-19.8,39.5-39.6,59.3-59.4c16.7-16.7,33.3-33.5,49.9-50.3c2.6-2.6,4.1-2.9,6.8-0.1c9.1,9.5,18.4,18.7,27.7,27.9
c15,15,36.4,15,51.4,0.1c9.5-9.4,19-18.9,28.3-28.4c2.2-2.2,3.5-2.3,5.7-0.1c36.8,37.1,73.6,74.1,110.5,111.1
c2.6,2.6,2.4,3.2-1.1,4.4c-4.1,1.3-8.3,1.8-12.5,1.8C296.3,270.5,244.1,270.5,191.9,270.5z"
/>
</g>
</g>
</g>
</svg>
JoseHCortes02@gmail.com
</a>
<div class="socials">
Connect with me:
<div class="social-icons">
<a
href="https://github.com/Web-Jose"
target="_blank"
aria-label="GitHub Profile"
>
<svg
version="1.1"
class="icon"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 240 240"
style="enable-background: new 0 0 240 240"
xml:space="preserve"
>
<style type="text/css">
.st0 {
fill: #d2d9d8;
}
</style>
<g>
<g transform="scale(10.66667,10.66667)">
<path
class="st0"
d="M11.2,1.9c-5.2,0-9.4,4.2-9.4,9.4s4.2,9.4,9.4,9.4s9.4-4.2,9.4-9.4S16.4,1.9,11.2,1.9z M11.2,3.8
c4.1,0,7.5,3.4,7.5,7.5c0,0.4,0,0.9-0.1,1.3c-0.2-0.1-0.6-0.1-1-0.1c-0.3,0-0.7,0-1,0.1c0.1-0.3,0.2-0.7,0.2-1.1
c0-0.9-0.4-1.7-1.1-2.4c0.2-0.7,0.4-2-0.1-2.5c-1.5,0-2.3,1.1-2.3,1.1c-0.5-0.1-0.9-0.2-1.4-0.2c-0.6,0-1.3,0.1-1.8,0.3l0.2-0.1
c0,0-0.8-1.1-2.3-1.1C7.3,7,7.5,8.4,7.7,9.1C7,9.8,6.6,10.6,6.6,11.5c0,0.3,0.1,0.6,0.1,0.9c-0.3,0-1.2-0.1-1.6-0.1
c-0.3,0-0.9,0.1-1.3,0.2c-0.1-0.4-0.1-0.8-0.1-1.1C3.8,7.1,7.1,3.8,11.2,3.8z M5.1,12.5c0.4,0,1.5,0.1,1.6,0.1
c0,0.1,0,0.1,0.1,0.1c-0.4,0-1.2-0.1-1.7,0c-0.3,0-0.8,0.2-1.2,0.3c0-0.1-0.1-0.2-0.1-0.4C4.3,12.5,4.8,12.5,5.1,12.5z M17.7,12.7
c0.4,0,0.7,0.1,0.9,0.1c0,0.1,0,0.1-0.1,0.2c-0.2-0.1-0.6-0.1-1.1-0.1c-0.2,0-0.6,0-0.9,0c0,0,0-0.1,0-0.1
C16.9,12.7,17.3,12.7,17.7,12.7z M5.7,12.9c0.5,0,1,0,1.2,0.1c0.5,0.9,1.5,1.6,3,1.9c-0.4,0.2-0.7,0.5-1,0.8c-0.2,0-0.5,0-0.7,0
c-0.7,0-1.1-0.6-1.4-1.1c-0.4-0.5-0.8-0.6-1-0.6c-0.2,0-0.3,0.1-0.2,0.2c0.7,0.5,1,1.2,1.3,1.8c0.3,0.5,0.8,0.8,1.4,0.8h0.1
c0,0.1,0,0.2,0,0.3v1c-2.2-0.9-3.8-2.7-4.4-5c0.4-0.1,0.8-0.2,1.1-0.2C5.3,12.9,5.5,12.9,5.7,12.9z M17.5,13c0.4,0,0.8,0.1,1,0.1
c-0.5,1.9-1.8,3.6-3.5,4.5v-0.6c0-0.8-0.6-1.8-1.5-2.3c1.5-0.3,2.4-0.9,3-1.8C16.8,13,17.2,13,17.5,13z M11.7,16.9
c0.3,0,0.5,0.2,0.5,0.5v1.3c-0.3,0-0.6,0.1-0.9,0.1v-1.4C11.2,17.1,11.5,16.9,11.7,16.9z M9.8,17.8c0.3,0,0.5,0.2,0.5,0.5v0.4
c-0.3,0-0.6-0.1-0.9-0.2v-0.2C9.4,18,9.6,17.8,9.8,17.8z M13.6,17.8c0.2,0,0.4,0.2,0.5,0.4c-0.3,0.1-0.6,0.2-0.9,0.3v-0.2
C13.1,18,13.3,17.8,13.6,17.8z"
/>
</g>
</g>
</svg>
</a>
<a
href="https://www.linkedin.com/in/webjose/"
target="_blank"
aria-label="LinkedIn Profile"
>
<svg
version="1.1"
class="icon"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 240 240"
style="enable-background: new 0 0 240 240"
xml:space="preserve"
>
<style type="text/css">
.st0 {
fill: #d2d9d8;
}
</style>
<g>
<g transform="scale(10.66667,10.66667)">
<path
class="st0"
d="M17.8,2.8H4.7c-1,0-1.9,0.8-1.9,1.9v13.1c0,1,0.8,1.9,1.9,1.9h13.1c1,0,1.9-0.8,1.9-1.9V4.7
C19.7,3.7,18.8,2.8,17.8,2.8z M8.4,15.9H6.1V9.4h2.4V15.9z M7.2,8.2C6.5,8.2,6,7.7,6,7s0.5-1.1,1.3-1.1C8,5.9,8.5,6.4,8.5,7
S8,8.2,7.2,8.2z M16.9,15.9h-2.3v-3.6c0-1-0.6-1.2-0.8-1.2c-0.2,0-1,0.2-1,1.2c0,0.2,0,3.6,0,3.6h-2.4V9.4h2.4v0.9
c0.3-0.5,0.9-0.9,2.1-0.9s2.1,0.9,2.1,3V15.9z"
/>
</g>
</g>
</svg>
</a>
<a
href="https://www.instagram.com/weebjose/"
target="_blank"
aria-label="Instagram Profile"
>
<svg
version="1.1"
class="icon"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 240 240"
style="enable-background: new 0 0 240 240"
xml:space="preserve"
>
<style type="text/css">
.st0 {
fill: #d2d9d8;
}
</style>
<g>
<g transform="scale(10.66667,10.66667)">
<path
class="st0"
d="M7.7,2.8C5.1,2.8,3,4.9,3,7.5V15c0,2.6,2.1,4.7,4.7,4.7h7.5c2.6,0,4.7-2.1,4.7-4.7V7.5c0-2.6-2.1-4.7-4.7-4.7
H7.7z M17.1,4.7c0.5,0,0.9,0.4,0.9,0.9s-0.4,0.9-0.9,0.9s-0.9-0.4-0.9-0.9S16.5,4.7,17.1,4.7z M11.4,6.6c2.6,0,4.7,2.1,4.7,4.7
s-2.1,4.7-4.7,4.7s-4.7-2.1-4.7-4.7S8.8,6.6,11.4,6.6z M11.4,8.4c-1.6,0-2.8,1.3-2.8,2.8s1.3,2.8,2.8,2.8s2.8-1.3,2.8-2.8
S13,8.4,11.4,8.4z"
/>
</g>
</g>
</svg>
</a>
</div>
<div class="copyright">Copyright © Jose Cortes, 2024</div>
</div>
</footer>
</section>
</main>
</body>
</html>