-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1443 lines (1353 loc) · 52.3 KB
/
index.html
File metadata and controls
1443 lines (1353 loc) · 52.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Dan Tech Media - Your Nexus for Web Development & Design"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- FONTS -->
<!-- connect to domain of font files -->
<!-- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> -->
<!-- optionally increase loading priority -->
<!-- <link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,400i|Nunito:300,300i&display=swap"
/> -->
<!-- async CSS -->
<!-- <link
rel="stylesheet"
media="print"
onload="this.onload=null;this.removeAttribute('media');"
href="https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,400i|Nunito:300,300i&display=swap"
/> -->
<!-- no-JS fallback -->
<!-- <noscript>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,400i|Nunito:300,300i&display=swap"
/>
</noscript> -->
<!-- CSS -->
<link rel="stylesheet" href="/css/main.css" />
<link rel="preload" as="style" href="/css/main.css" />
<!-- FAVICON -->
<link
rel="shortcut icon"
type="image/png"
href="/media/icons/favicon/dtm-favicon.ico"
/>
<!-- TITLE -->
<title>
Dan Tech Media — Your Nexus for Web Development & Design
</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="navbar__container">
<h1 class="navbar__logo">
Dan<span class="navbar__logo--tech-media">TechMedia</span>
</h1>
<!-- Menu Icon -->
<div class="navbar__menu-btn" id="nav-btn">
<div class="navbar__menu-btn--menu-burger"></div>
</div>
<!-- Sidebar -->
<aside class="sidebar" id="sidebar-links">
<div>
<h1 class="sidebar__logo">
Dan<span class="sidebar__logo--tech-media">TechMedia</span>
</h1>
<!-- sidebar-links -->
<ul class="sidebar__links">
<li>
<a
class="sidebar__links--link smooth-scroll"
href="#home"
aria-label="Sidebar Link to Home"
>Home</a
>
</li>
<li>
<a
class="sidebar__links--link smooth-scroll"
href="#about"
aria-label="Sidebar Link to About"
>About</a
>
</li>
<li>
<a
class="sidebar__links--link smooth-scroll"
href="#projects"
aria-label="Sidebar Link to Projects"
>Projects</a
>
</li>
<li>
<a
class="sidebar__links--link smooth-scroll"
href="#contact"
aria-label="Sidebar Link to Contact"
>Contact</a
>
</li>
</ul>
<!-- social icons -->
<!-- Email -->
<ul class="sidebar__social-icons">
<li class="sidebar__social-item">
<a
class="sidebar__social-link"
href="mailto:dan@dantechmedia.com"
aria-label="Link to Email"
target="_blank"
rel="noreferrer"
>
<!-- Email SVG -->
<svg class="sidebar__social-link--email">
<use
href="/media/icons/svg/sprite-sheet.svg#email-square-bisque"
></use>
</svg>
</a>
</li>
<!-- GitHub -->
<li class="sidebar__social-item">
<a
class="sidebar__social-link"
href="https://github.com/dtm85"
aria-label="Link to GitHub"
target="_blank"
rel="noreferrer"
>
<!-- GitHub SVG -->
<svg class="sidebar__social-link--github">
<use
href="/media/icons/svg/sprite-sheet.svg#github-white-background"
></use>
</svg>
</a>
</li>
<!-- Linkedin -->
<li class="sidebar__social-item">
<a
class="sidebar__social-link"
href="https://www.linkedin.com/in/ddumitru85"
aria-label="Link to LinkedIn"
target="_blank"
rel="noreferrer"
>
<!-- Linkedin SVG -->
<svg class="sidebar__social-link--linkedin">
<use
href="/media/icons/svg/sprite-sheet.svg#linkedin-white-text"
></use>
</svg>
</a>
</li>
<!-- Twitter -->
<li class="sidebar__social-item">
<a
class="sidebar__social-link"
href="https://twitter.com/DanTechMedia"
aria-label="Link to Twitter"
target="_blank"
rel="noreferrer"
>
<!-- Twitter SVG -->
<svg class="sidebar__social-link--twitter">
<use
href="/media/icons/svg/sprite-sheet.svg#twitter-white-logo"
></use>
</svg>
</a>
</li>
<!-- Discord -->
<li class="sidebar__social-item">
<a
class="sidebar__social-link"
href="https://discord.gg/GcBxh8fR97"
aria-label="Link to Discord Channel"
target="_blank"
rel="noreferrer"
>
<!-- Discord SVG -->
<svg class="sidebar__social-link--discord">
<use
href="/media/icons/svg/sprite-sheet.svg#discord-white-logo"
></use>
</svg>
</a>
</li>
<!-- Microsoft Teams -->
<li class="sidebar__social-item">
<a
class="sidebar__social-link"
href="https://teams.microsoft.com/l/channel/19%3a48c526c6853c48a8b7e890480ac6188f%40thread.tacv2/General?groupId=6735be74-4744-4f29-8abf-0be2909b0409&tenantId=1169f266-1f68-40cb-9c71-c413e7760f17"
aria-label="Link to Microsoft Teams Channel"
target="_blank"
rel="noreferrer"
>
<!-- Microsoft Teams SVG -->
<svg class="sidebar__social-link--microsoft-teams">
<use
href="/media/icons/svg/sprite-sheet.svg#microsoft-teams"
></use>
</svg>
</a>
</li>
</ul>
</div>
</aside>
<!-- end of sidebar -->
<!-- Nav Links -->
<ul class="navbar__nav-links">
<li>
<a
class="navbar__nav-links--link smooth-scroll"
href="#home"
aria-label="Navbar Link to Home"
>Home</a
>
</li>
<li>
<a
class="navbar__nav-links--link smooth-scroll"
href="#about"
aria-label="Navbar Link to About"
>About</a
>
</li>
<li>
<a
class="navbar__nav-links--link smooth-scroll"
href="#projects"
aria-label="Navbar Link to Projects"
>Projects</a
>
</li>
<li>
<a
class="navbar__nav-links--link smooth-scroll"
href="#contact"
aria-label="Navbar Link to Contact"
>Contact</a
>
</li>
</ul>
</div>
</nav>
<!-- End of Navbar -->
<!-- Content Container -->
<main class="container">
<!-- Header -->
<header class="header" id="home">
<!-- Video Background -->
<video
class="header__video-background"
src="/media/videos/(1080p)_Tech_Network.mp4"
muted
loop
autoplay
playsinline
></video>
<!-- Video Overlay -->
<div class="header__video-background--overlay"></div>
<!-- Header Hero Text -->
<div class="header__hero-text">
<!-- Logo Heading -->
<h1 class="header__logo">
Dan<span class="header__logo--tech-media">TechMedia</span>
</h1>
<!-- Logo Subheading -->
<h2 class="header__description">
Your Nexus for
<!-- Breakpoint for 500px screens -->
<span class="header__description--breakpoint"
>Web
<!-- Typewriter Effect -->
<span
class="header__description--typewriter"
data-wait="2000"
data-words='["Development", "Design"]'
></span
></span>
</h2>
<!-- Hero Button HIRE ME -->
<div class="header__hero-btn">
<a
class="btn hire-me smooth-scroll"
href="#contact"
aria-label="Hire Me Button Link to Contact Section"
>Hire Me</a
>
</div>
<!-- Social Links on Hero Section -->
<!-- Social Wrapper -->
<div class="header__social-wrapper">
<!-- Social Icons - Unordered List -->
<ul class="header__social-icons">
<li class="header__social-item">
<!-- Email -->
<a
class="header__social-link"
href="mailto:dan@dantechmedia.com"
aria-label="Link to Email"
>
<!-- Email SVG -->
<svg
class="header__social-link--svg header__social-link--email"
>
<use
href="/media/icons/svg/sprite-sheet.svg#email-square-bisque"
></use>
</svg>
</a>
</li>
<li class="header__social-item">
<!-- GitHub -->
<a
class="header__social-link"
href="https://github.com/dtm85"
aria-label="Link to GitHub"
target="_blank"
rel="noreferrer"
>
<!-- GitHub SVG -->
<svg
class="header__social-link--svg header__social-link--github"
>
<use
href="/media/icons/svg/sprite-sheet.svg#github-white-background"
></use>
</svg>
</a>
</li>
<li class="header__social-item">
<!-- Linkedin -->
<a
class="header__social-link"
href="https://www.linkedin.com/in/ddumitru85"
aria-label="Link to LinkedIn"
target="_blank"
rel="noreferrer"
>
<!-- Linkedin SVG -->
<svg
class="header__social-link--svg header__social-link--linkedin"
>
<use
href="/media/icons/svg/sprite-sheet.svg#linkedin-white-text"
></use>
</svg>
</a>
</li>
<li class="header__social-item">
<!-- Twitter -->
<a
class="header__social-link"
href="https://twitter.com/DanTechMedia"
aria-label="Link to Twitter"
target="_blank"
rel="noreferrer"
>
<!-- Twitter SVG -->
<svg
class="header__social-link--svg header__social-link--twitter"
>
<use
href="/media/icons/svg/sprite-sheet.svg#twitter-white-logo"
></use>
</svg>
</a>
</li>
<li class="header__social-item">
<!-- Discord -->
<a
class="header__social-link"
href="https://discord.gg/GcBxh8fR97"
aria-label="Link to Discord Channel"
target="_blank"
rel="noreferrer"
>
<!-- Discord SVG -->
<svg
class="header__social-link--svg header__social-link--discord"
>
<use
href="/media/icons/svg/sprite-sheet.svg#discord-white-logo"
></use>
</svg>
</a>
</li>
<li class="header__social-item">
<!-- Microsoft Teams -->
<a
class="header__social-link"
href="https://teams.microsoft.com/l/channel/19%3a48c526c6853c48a8b7e890480ac6188f%40thread.tacv2/General?groupId=6735be74-4744-4f29-8abf-0be2909b0409&tenantId=1169f266-1f68-40cb-9c71-c413e7760f17"
aria-label="Link to Microsoft Teams Channel"
target="_blank"
rel="noreferrer"
>
<!-- Microsoft Teams SVG -->
<svg
class="header__social-link--svg header__social-link--microsoft-teams"
>
<use
href="/media/icons/svg/sprite-sheet.svg#microsoft-teams"
></use>
</svg>
</a>
</li>
</ul>
</div>
</div>
<!-- iPhone Mockup -->
<div class="header__iphone">
<img
class="header__iphone--img"
src="/media/images/svg/iPhone-Gold.svg"
alt="iPhone Gold"
/>
</div>
</header>
<!-- End of Header -->
<!-- About -->
<!-- About Me Section -->
<section class="about" id="about">
<h1 class="about__heading">About Me</h1>
<!-- About Profile Picture -->
<div class="about__intro">
<div class="about__intro--mobile-view">
<img
class="about__photo"
src="/media/images/Dan_Profile_Picture(465x465).jpg.webp"
alt="Dan Profile Picture"
/>
</div>
<!-- Blank spaces for text to wrap better around the photo -->
<p>​</p>
<!-- <p>​</p> -->
<!-- About Text -->
<p class="about__text-p1">
<span class="about__text-p1--bold-hello">Hi there!</span>
Thanks for visiting my portfolio! My name is Dan Dumitru, from the
first time I realized what I can create with code, I was immediately
hooked! Since then, I've dedicated my time to gain proficiency in
all intricacies of web development in order to better myself as a
developer and problem solver. I am extremely passionate about
writing clean code and developing elegant & functional websites. I
am competent in my front-end skills using web technologies to build
amazing products.
</p>
<p class="about__text-p2">
I would love to hear from you, whether it’s a project, job
opportunity, or just a chat. Feel free to contact me! Let’s build
something!
</p>
<!-- </div> -->
</div>
<!-- Skills Section -->
<div class="skills">
<!-- Skills Header -->
<h1 class="skills__heading">Skills</h1>
<!-- Skills Container -->
<div class="skills__section-container">
<!-- Skills SVG Container -->
<div class="skills__outer-wrapper">
<ul class="skills__icon-container">
<!-- HTML5 -->
<li class="skills__skill">
<svg class="skills__skill--html5">
<use href="/media/icons/svg/sprite-sheet.svg#html5"></use>
</svg>
</li>
<!-- CSS3 -->
<li class="skills__skill">
<svg class="skills__skill--css3">
<use href="/media/icons/svg/sprite-sheet.svg#css3"></use>
</svg>
</li>
<!-- SASS -->
<li class="skills__skill">
<svg class="skills__skill--sass">
<use href="/media/icons/svg/sprite-sheet.svg#sass"></use>
</svg>
</li>
<!-- Bootstrap -->
<li class="skills__skill">
<svg class="skills__skill--bootstrap">
<use
href="/media/icons/svg/sprite-sheet.svg#bootstrap"
></use>
</svg>
</li>
<!-- JavaScript -->
<li class="skills__skill">
<svg class="skills__skill--js">
<use href="/media/icons/svg/sprite-sheet.svg#js"></use>
</svg>
</li>
<!-- Nodejs -->
<li class="skills__skill">
<svg class="skills__skill--node-js">
<use href="/media/icons/svg/sprite-sheet.svg#node-js"></use>
</svg>
</li>
<!-- NPM -->
<li class="skills__skill">
<svg class="skills__skill--npm">
<use href="/media/icons/svg/sprite-sheet.svg#npm"></use>
</svg>
</li>
<!-- Git -->
<li class="skills__skill">
<svg class="skills__skill--git">
<use href="/media/icons/svg/sprite-sheet.svg#git-alt"></use>
</svg>
</li>
<!-- Figma -->
<li class="skills__skill">
<svg class="skills__skill--figma">
<use
id="use-figma"
href="/media/icons/svg/sprite-sheet.svg#figma"
></use>
</svg>
</li>
<!-- ubuntu -->
<li class="skills__skill">
<svg class="skills__skill--ubuntu">
<use href="/media/icons/svg/sprite-sheet.svg#ubuntu"></use>
</svg>
</li>
<!-- Nginx -->
<li class="skills__skill">
<svg class="skills__skill--nginx">
<use href="/media/icons/svg/sprite-sheet.svg#nginx"></use>
</svg>
</li>
<!-- Linode -->
<li class="skills__skill">
<svg class="skills__skill--linode">
<use href="/media/icons/svg/sprite-sheet.svg#linode"></use>
</svg>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- End of About -->
<!-- Projects Section -->
<section class="projects" id="projects">
<!-- Glass Container -->
<div class="projects__glass-container">
<!-- Heading Container -->
<div class="projects__heading-container">
<h1 class="projects__heading">Projects</h1>
</div>
<!-- Card Container -->
<div class="projects__cards-container">
<!-- Card Wrapper -->
<!--
===================
Project 1 - Forkify
===================
-->
<!-- <div class="projects__card projects__card--project1"> -->
<!-- Card Content -->
<!-- <div class="projects__project-content">
<div class="projects__logo"></div> -->
<!-- h2 -->
<!-- <h2 class="projects__title">Forkify</h2> -->
<!-- BTN -->
<!-- <div class="projects__btn-container">
<a
class="projects__view-project-btn"
href="/projects/N-A/index.html"
aria-label="Link to Forkify Project"
target="_blank"
rel="noreferrer"
>
View Project
</a>
</div> -->
<!-- GitHub Link -->
<!-- <div class="projects__github-container">
<a
class="projects__github-link"
href="https://github.com/dtm85/dtm85.github.io/tree/master/projects/Forkify"
aria-label="Link to Forkify Project on Git Hub"
target="_blank"
rel="noreferrer"
> -->
<!-- GitHub SVG -->
<!-- <svg class="projects__github-svg">
<use
href="/media/icons/svg/sprite-sheet.svg#github"
></use>
</svg>
</a>
</div> -->
<!-- Skills - Code Langues -->
<!-- <div
class="
projects__code-languages projects__project1-code-languages
"
> -->
<!-- SVG html5 -->
<!-- <svg class="projects__html5-svg">
<use href="/media/icons/svg/sprite-sheet.svg#html5"></use>
</svg> -->
<!-- SVG css3 -->
<!-- <svg class="projects__css3-svg">
<use href="/media/icons/svg/sprite-sheet.svg#css3"></use>
</svg> -->
<!-- SVG js -->
<!-- <svg class="projects__js-svg">
<use href="/media/icons/svg/sprite-sheet.svg#js"></use>
</svg>
</div> -->
<!-- Gradient Container - When hovering, will glow -->
<!-- <div class="projects__card--project1-gradient"></div>
</div>
</div> -->
<!--
=================
Project 2 - Mapty
=================
-->
<!-- <div class="projects__card projects__card--project2"> -->
<!-- Card Content -->
<!-- <div class="projects__project-content">
<div class="projects__logo"></div> -->
<!-- h2 -->
<!-- <h2 class="projects__title">Mapty</h2> -->
<!-- BTN -->
<!-- <div class="projects__btn-container">
<a
class="projects__view-project-btn"
href="/projects/Mapty/index.html"
aria-label="Link to Mapty Project"
target="_blank"
rel="noreferrer"
>
View Project
</a>
</div> -->
<!-- GitHub Link -->
<!-- <div class="projects__github-container">
<a
class="projects__github-link"
href="https://github.com/dtm85/dtm85.github.io/tree/master/projects/Mapty"
aria-label="Link to Mapty Project on Git Hub"
target="_blank"
rel="noreferrer"
> -->
<!-- GitHub SVG -->
<!-- <svg class="projects__github-svg">
<use
href="/media/icons/svg/sprite-sheet.svg#github"
></use>
</svg>
</a>
</div> -->
<!-- Skills - Code Langues -->
<!-- <div
class="
projects__code-languages projects__project2-code-languages
"
> -->
<!-- SVG html5 -->
<!-- <svg class="projects__html5-svg">
<use href="/media/icons/svg/sprite-sheet.svg#html5"></use>
</svg> -->
<!-- SVG css3 -->
<!-- <svg class="projects__css3-svg">
<use href="/media/icons/svg/sprite-sheet.svg#css3"></use>
</svg> -->
<!-- SVG js -->
<!-- <svg class="projects__js-svg">
<use href="/media/icons/svg/sprite-sheet.svg#js"></use>
</svg>
</div> -->
<!-- Gradient Container - When hovering, will glow -->
<!-- <div class="projects__card--project2-gradient"></div>
</div>
</div> -->
<!--
==================
Project 3 - Nexter
==================
-->
<div class="projects__card projects__card--project3">
<!-- Card Content -->
<div class="projects__project-content">
<div class="projects__logo"></div>
<!-- h2 -->
<h2 class="projects__title">Nexter</h2>
<!-- BTN -->
<div class="projects__btn-container">
<a
class="projects__view-project-btn"
href="/projects/Nexter/index.html"
aria-label="Link to Nexter Project"
target="_blank"
rel="noreferrer"
>
View Project
</a>
</div>
<!-- GitHub Link -->
<div class="projects__github-container">
<a
class="projects__github-link"
href="https://github.com/dtm85/dtm85.github.io/tree/master/projects/Nexter"
aria-label="Link to Nexter Project on Git Hub"
target="_blank"
rel="noreferrer"
>
<!-- GitHub SVG -->
<svg class="projects__github-svg">
<use
href="/media/icons/svg/sprite-sheet.svg#github"
></use>
</svg>
</a>
</div>
<!-- Skills - Code Langues -->
<div
class="projects__code-languages projects__project3-code-languages"
>
<!-- SVG html5 -->
<svg class="projects__html5-svg">
<use href="/media/icons/svg/sprite-sheet.svg#html5"></use>
</svg>
<!-- SVG css3 -->
<svg class="projects__css3-svg">
<use href="/media/icons/svg/sprite-sheet.svg#css3"></use>
</svg>
<!-- SVG js -->
<svg class="projects__js-svg">
<use href="/media/icons/svg/sprite-sheet.svg#js"></use>
</svg>
</div>
<!-- Gradient Container - When hovering, will glow -->
<div class="projects__card--project3-gradient"></div>
</div>
</div>
<!--
===================
Project 4 - Natours
===================
-->
<div class="projects__card projects__card--project4">
<!-- Card Content -->
<div class="projects__project-content">
<div class="projects__logo"></div>
<!-- h2 -->
<h2 class="projects__title">Natours</h2>
<!-- BTN -->
<div class="projects__btn-container">
<a
class="projects__view-project-btn"
href="/projects/Natours/index.html"
aria-label="Link to Natours Project"
target="_blank"
rel="noreferrer"
>
View Project
</a>
</div>
<!-- GitHub Link -->
<div class="projects__github-container">
<a
class="projects__github-link"
href="https://github.com/dtm85/dtm85.github.io/tree/master/projects/Natours"
aria-label="Link to Natours Project on Git Hub"
target="_blank"
rel="noreferrer"
>
<!-- GitHub SVG -->
<svg class="projects__github-svg">
<use
href="/media/icons/svg/sprite-sheet.svg#github"
></use>
</svg>
</a>
</div>
<!-- Skills - Code Langues -->
<div
class="projects__code-languages projects__project4-code-languages"
>
<!-- SVG html5 -->
<svg class="projects__html5-svg">
<use href="/media/icons/svg/sprite-sheet.svg#html5"></use>
</svg>
<!-- SVG css3 -->
<svg class="projects__css3-svg">
<use href="/media/icons/svg/sprite-sheet.svg#css3"></use>
</svg>
<!-- SVG js -->
<svg class="projects__js-svg">
<use href="/media/icons/svg/sprite-sheet.svg#js"></use>
</svg>
</div>
<!-- Gradient Container - When hovering, will glow -->
<div class="projects__card--project4-gradient"></div>
</div>
</div>
<!--
====================
Project 5 - Omnifood
====================
-->
<div class="projects__card projects__card--project5">
<!-- Card Content -->
<div class="projects__project-content">
<div class="projects__logo"></div>
<!-- h2 -->
<h2 class="projects__title">Omnifood</h2>
<!-- BTN -->
<div class="projects__btn-container">
<a
class="projects__view-project-btn"
href="/projects/Omnifood/index.html"
aria-label="Link to Omnifood Project"
target="_blank"
rel="noreferrer"
>
View Project
</a>
</div>
<!-- GitHub Link -->
<div class="projects__github-container">
<a
class="projects__github-link"
href="https://github.com/dtm85/dtm85.github.io/tree/master/projects/Omnifood"
aria-label="Link to Omnifood Project on Git Hub"
target="_blank"
rel="noreferrer"
>
<!-- GitHub SVG -->
<svg class="projects__github-svg">
<use
href="/media/icons/svg/sprite-sheet.svg#github"
></use>
</svg>
</a>
</div>
<!-- Skills - Code Langues -->
<div
class="projects__code-languages projects__project5-code-languages"
>
<!-- SVG html5 -->
<svg class="projects__html5-svg">
<use href="/media/icons/svg/sprite-sheet.svg#html5"></use>
</svg>
<!-- SVG css3 -->
<svg class="projects__css3-svg">
<use href="/media/icons/svg/sprite-sheet.svg#css3"></use>
</svg>
<!-- SVG js -->
<svg class="projects__js-svg">
<use href="/media/icons/svg/sprite-sheet.svg#js"></use>
</svg>
</div>
<!-- Gradient Container - When hovering, will glow -->
<div class="projects__card--project5-gradient"></div>
</div>
</div>
<!--
==================
Project 6 - Trillo
==================
-->
<div class="projects__card projects__card--project6">
<!-- Card Content -->
<div class="projects__project-content">
<div class="projects__logo"></div>
<!-- h2 -->
<h2 class="projects__title">Trillo</h2>
<!-- BTN -->
<div class="projects__btn-container">
<a
class="projects__view-project-btn"
href="/projects/Trillo/index.html"
aria-label="Link to Trillo Project"
target="_blank"
rel="noreferrer"
>
View Project
</a>
</div>
<!-- GitHub Link -->
<div class="projects__github-container">
<a
class="projects__github-link"
href="https://github.com/dtm85/dtm85.github.io/tree/master/projects/Trillo"
aria-label="Link to Trillo Project on Git Hub"
target="_blank"
rel="noreferrer"
>
<!-- GitHub SVG -->
<svg class="projects__github-svg">
<use
href="/media/icons/svg/sprite-sheet.svg#github"
></use>
</svg>
</a>
</div>
<!-- Skills - Code Langues -->
<div
class="projects__code-languages projects__project6-code-languages"
>
<!-- SVG html5 -->
<svg class="projects__html5-svg">
<use href="/media/icons/svg/sprite-sheet.svg#html5"></use>
</svg>
<!-- SVG css3 -->
<svg class="projects__css3-svg">
<use href="/media/icons/svg/sprite-sheet.svg#css3"></use>
</svg>
<!-- SVG js -->
<svg class="projects__js-svg">
<use href="/media/icons/svg/sprite-sheet.svg#js"></use>
</svg>
</div>
<!-- Gradient Container - When hovering, will glow -->
<div class="projects__card--project6-gradient"></div>
</div>
</div>
<!--
=====================
Project 7 - Portfolio
=====================
-->
<div class="projects__card projects__card--project7">
<!-- Card Content -->
<div class="projects__project-content">
<div class="projects__logo"></div>
<!-- h2 -->
<h2 class="projects__title">Portfolio</h2>
<!-- BTN -->
<div class="projects__btn-container">
<a
class="projects__view-project-btn"