-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1403 lines (1402 loc) · 60 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="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NZPHQGRDE4"></script>
<!-- Google Analytics -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-NZPHQGRDE4");
</script>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
"gtm.start": new Date().getTime(),
event: "gtm.js",
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-PMGFC8B8");
</script>
<!-- End Google Tag Manager -->
<!-- -->
<!-- ConsentManager analytics -->
<script
src="https://cdn.consentmanager.net/trackless/delivery/1c06df4134bc.js"
async
type="text/javascript"></script>
<!-- Basic Page Info -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- SEO Meta Tags -->
<meta
name="description"
content="Tore M. Hirth's portfolio showcasing front-end development projects using HTML, CSS, SCSS, and JavaScript." />
<meta
name="keywords"
content="Front-end development, HTML, CSS, SCSS, JavaScript, Portfolio, Web Design, UI, UX, Tore Mæland Hirth, Tore M. Hirth, Tore Hirth, Tore, Hirth" />
<meta name="author" content="Tore M. Hirth" />
<!-- Ensures search engines can index page -->
<meta name="robots" content="index, follow" />
<!-- Open Graph / Social Media Meta Tags -->
<meta property="og:title" content="Tore M. Hirth | Front-end Development Portfolio" />
<meta
property="og:site_name"
content="Tore M. Hirth | Front-end Development Portfolio" />
<meta
property="og:description"
content="Explore my portfolio of front-end projects, designed with modern web technologies." />
<meta property="og:image" content="URL to an image representing your site" />
<meta property="og:url" content="https://torehirth.no/" />
<meta property="og:type" content="website" />
<!-- Favicon -->
<link rel="icon" href="./src/assets/icons/favicon/favicon.ico" type="image/x-icon" />
<!-- External CSS -->
<link rel="stylesheet" href="./src/css/styles.css" />
<!-- Script -->
<script type="module" src="./src/js/views/index.mjs"></script>
<title>Tore M. Hirth | Front-end Development Portfolio</title>
</head>
<body id="body">
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-PMGFC8B8"
height="0"
width="0"
style="display: none; visibility: hidden"></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- -->
<!--------- Landing Section ---------->
<header id="header">
<section class="landing-section" aria-label="Landing page">
<div class="outer-header-container">
<!------ Desktop header bar / Nav ------>
<div class="header-bar-container">
<div class="header-bar">
<a
id="logo-btn"
class="logo-container logo-btn"
href="#"
aria-label="Go to top of page">
<img
src="./src/assets/images/logo/logo-red.svg"
alt="Tore M. Hirth logo"
aria-hidden="true"
loading="lazy" />
</a>
<nav aria-label="Primary links">
<ul class="page-link-wrapper">
<li>
<a href="#" class="projects-btn main-link">Projects</a>
</li>
<li>
<a href="#" class="skills-btn main-link">Skills</a>
</li>
<li>
<a href="#" class="about-btn main-link">About</a>
</li>
<li>
<a href="#" class="experience-btn main-link">Experience</a>
</li>
<li>
<a href="#" class="contact-btn main-link">Contact</a>
</li>
</ul>
</nav>
<nav aria-label="Social Media">
<ul class="some-links-wrapper">
<li>
<a
rel="noopener noreferrer"
href="https://www.linkedin.com/in/torehirth/"
target="_blank"
aria-label="LinkedIn"
><img
src="./src/assets/icons/icons/linkedin.svg"
alt="LinkedIn icon"
loading="lazy"
/></a>
</li>
<li>
<a
rel="noopener noreferrer"
href="https://github.com/torehirth"
target="_blank"
aria-label="GitHub"
><img
src="./src/assets/icons/icons/github.svg"
alt="GitHub icon"
loading="lazy"
/></a>
</li>
<li>
<a
rel="noopener noreferrer"
href="https://www.instagram.com/torehirth"
target="_blank"
aria-label="Instagram"
><img
src="./src/assets/icons/icons/instagram.svg"
alt="Instagram icon"
loading="lazy"
/></a>
</li>
<li>
<a
rel="noopener noreferrer"
href="https://www.facebook.com/torehirth"
target="_blank"
aria-label="Facebook"
><img
src="./src/assets/icons/icons/facebook.svg"
alt="Facebook icon"
loading="lazy"
/></a>
</li>
</ul>
</nav>
<div class="utility-btn-wrapper">
<!-- colour mode -->
<div class="colour-mode-wrapper" aria-label="Toggle colour modes">
<button
id="light-mode-btn"
class="colour-mode-btn is-active"
aria-label="Click for light colour mode"
title="Light colour mode">
<img
class="light-mode-icon"
src="./src/assets/icons/icons/Light-mode.svg"
alt="Light mode icon"
loading="lazy" />
</button>
<button
id="dark-mode-btn"
class="colour-mode-btn"
aria-label="Click for dark colour mode"
title="Dark colour mode">
<img
class="dark-mode-icon"
src="./src/assets/icons/icons/dark-mode.svg"
alt="Dark mode icon"
loading="lazy" />
</button>
</div>
<!-- Hamburger button -->
<div class="hamburger" title="hamburger menu">
<button class="hamburger-bar"></button>
</div>
</div>
</div>
</div>
<!--------- Mobile Navigation ---------->
<aside id="mobile-nav" class="mobile-nav">
<nav class="mobile-nav-links" aria-label="Primary links">
<ul class="page-link-wrapper">
<li>
<a href="#" class="projects-btn main-link">Projects</a>
</li>
<li>
<a href="#" class="skills-btn main-link">Skills</a>
</li>
<li><a href="#" class="about-btn main-link">About</a></li>
<li>
<a href="#" class="experience-btn main-link">Experience</a>
</li>
<li>
<a href="#" class="contact-btn main-link">Contact</a>
</li>
</ul>
</nav>
<nav aria-label="Social Media">
<ul class="some-links-wrapper">
<li class="some-link--wrapper">
<a
class="contact-some-link"
href="https://www.linkedin.com/in/torehirth/"
target="_blank"
rel="noopener noreferrer"
aria-label="Follow me on LinkedIn"
><img
src="./src/assets/icons/icons/linkedin.svg"
aria-hidden="true"
loading="lazy"
alt="Visit my LinkedIn profile" />
<p>LinkedIn</p></a
>
</li>
<li class="some-link--wrapper">
<a
class="contact-some-link"
href="https://github.com/torehirth"
target="_blank"
rel="noopener noreferrer"
aria-label="Follow me on GitHub">
<img
src="./src/assets/icons/icons/github.svg"
aria-hidden="true"
loading="lazy"
alt="Visit my GitHub profile" />
<p>GitHub</p></a
>
</li>
<li class="some-link--wrapper">
<a
class="contact-some-link"
href="https://www.instagram.com/torehirth"
target="_blank"
rel="noopener noreferrer"
aria-label="Follow me on Instagram"
><img
src="./src/assets/icons/icons/instagram.svg"
aria-hidden="true"
loading="lazy"
alt="Follow my Instagram profile" />
<p>Instagram</p></a
>
</li>
<li class="some-link--wrapper">
<a
class="contact-some-link"
href="https://www.facebook.com/torehirth"
target="_blank"
rel="noopener noreferrer"
aria-label="Follow me on Facebook">
<img
src="./src/assets/icons/icons/facebook.svg"
aria-hidden="true"
loading="lazy"
alt="Facebook icon" />
<p>Facebook</p></a
>
</li>
</ul>
</nav>
</aside>
<!-- Intro Content -->
<article class="intro-container">
<div class="section-heading">
<div class="name-container">
<h1 aria-label="heading together with logo results in Tore M. Hirth">
I'm<img
src="./src/assets/images/logo/logo-big.svg"
alt="logo shaped as a T"
aria-hidden="false" />ore M. Hirth
</h1>
</div>
<span class="heading-underline" aria-hidden="true"></span>
</div>
<p class="intro-text">
Aspiring Front-End Developer that strives to create intuitive and engaging
user experiences. I love designing clean and accessible interfaces that
brings simplicity and functionality together.
</p>
<div class="intro-btn-container">
<a
rel="noopener noreferrer"
target="_blank"
href="https://github.com/torehirth"
class="primary-btn"
aria-label="Visit my GitHub profile"
>My GitHub<img
src="./src/assets/icons/icons/github.svg"
alt="GitHub icon"
aria-hidden="true"
loading="lazy" />
</a>
<a
rel="noopener noreferrer"
target="_blank"
href="https://www.linkedin.com/in/torehirth/"
class="primary-btn"
aria-label="Visit my LinkedIn profile"
>My LinkedIn<img
src="./src/assets/icons/icons/linkedin.svg"
alt="LinkedIn icon"
aria-hidden="true"
loading="lazy" />
</a>
</div>
</article>
<!-- Button down to projects section -->
<div class="btn-down-container">
<p>Take a look at my projects</p>
<a
class="btn-down"
href="#projects"
aria-label="Navigate down to projects section">
<img
src="./src/assets/icons/icons/double_arrow.svg"
alt="Down arrow icon"
loading="lazy" />
</a>
</div>
</div>
</section>
</header>
<main>
<!-- Projects section -->
<div class="primary-colour">
<section class="section" id="projects">
<header class="section-heading">
<h1>My projects</h1>
<span class="heading-underline"></span>
</header>
<!-- Out 'n About project -->
<article class="project-wrapper">
<div class="outer-container">
<div class="text-outer-wrapper">
<h2>Out 'n About</h2>
<div class="text-inner-wrapper">
<h3>Type:</h3>
<p>Blog website</p>
</div>
<div class="text-inner-wrapper">
<h3>Description:</h3>
<p>
Out 'n About is a blog website developed for Project Exam 1 in my
Front-End Development course. The website showcases a clean,
accessible design and dynamic functionality powered by JavaScript and
WordPress, a headless CMS.
</p>
<button
class="description-btn read-more-btn"
aria-label="Open modal to read more about Out 'n About project">
Read more..
</button>
</div>
<div class="description-wrapper">
<span class="project-description-underline" aria-hidden="true"></span>
<article class="text-inner-wrapper">
<h4>Key Features:</h4>
<ul>
<li>Home Page with a slider displaying the latest posts.</li>
<li>
Blog Post Pages dynamically built using query string parameters,
featuring clickable images displayed in modals.
</li>
<li>
Blog List Page displaying at least 12 posts, with 10 shown
initially and a button to load more posts.
</li>
<li>
Contact Page with a form validated via JavaScript, including
fields for name, email, subject, and message content.
</li>
<li>Search Bar to filter blog posts in real-time.</li>
<li>
Category Filtering to dynamically display posts by category.
</li>
</ul>
</article>
<span class="project-description-underline" aria-hidden="true"></span>
<article class="text-inner-wrapper">
<h4>Technical Overview:</h4>
<p>
The project uses WordPress as a headless CMS, with the REST API
fetching and displaying content dynamically using JavaScript. I
implemented features like a custom-built image carousel, form
validation, and real-time search functionality. The blog post
content is parsed using the DOMParser to manage and display the
markup efficiently.
</p>
</article>
<span class="project-description-underline" aria-hidden="true"></span>
<article class="text-inner-wrapper">
<h4>Technologies Used:</h4>
<ul>
<li>Figma for designing prototypes.</li>
<li>GitHub for project planning and version control.</li>
<li>
JavaScript for dynamic content rendering and interactive features.
</li>
<li>WordPress REST API for fetching and managing blog content.</li>
<li>HTML5 and CSS3 for structuring and styling the website.</li>
<li>
Responsive Design ensuring usability across different screen
sizes.
</li>
<li>
WCAG 2.1 Compliance with a focus on accessibility, including alt
text for images, keyboard navigation, and semantic HTML.
</li>
</ul>
</article>
<span class="project-description-underline" aria-hidden="true"></span>
<div class="text-inner-wrapper">
<h4>Tech Stack:</h4>
<div
class="tech-wrapper"
aria-label="wrapper with used programs and tools">
<img
src="./src/assets/icons/programming-languages/javascript-svgrepo-com.webp"
alt="JavaScript icon"
aria-label="JavaScript"
title="JavaScript" />
<img
src="./src/assets/icons/programming-languages/html-5-svgrepo-com.webp"
alt="HTML5 icon"
aria-label="HTML5"
title="HTML5" />
<img
src="./src/assets/icons/programming-languages/css-3-svgrepo-com.webp"
alt="CSS3 icon"
aria-label="CSS3"
title="CSS3" />
<img
src="./src/assets/icons/programming-languages/wordpress-color-svgrepo-com.webp"
alt="WordPress icon"
aria-label="WordPress"
title="WordPress" />
<img
src="./src/assets/icons/programming-languages/figma-svgrepo-com.webp"
alt="Figma icon"
aria-label="Figma"
title="Figma" />
<img
src="./src/assets/icons/programming-languages/github-svgrepo-com.webp"
alt="GitHub icon"
aria-label="GitHub"
title="GitHub" />
<img
src="./src/assets/icons/programming-languages/git-svgrepo-com.webp"
alt="Git icon"
aria-label="Git"
title="Git" />
<img
src="./src/assets/icons/programming-languages/vs-code-svgrepo-com.webp"
alt="Visual Studio Code icon"
aria-label="Visual Studio Code"
title="Visual Studio Code" />
</div>
</div>
<button
class="description-btn read-less-btn"
aria-label="Open modal to read more about Out 'n About project">
Read less..
</button>
</div>
<div class="project-btn-container">
<a
class="primary-btn"
href="https://github.com/Torehirth/out-n-about"
aria-label="View Out 'n About project repository on GitHub"
target="_blank"
rel="noopener noreferrer"
>View repository<img
src="./src/assets/icons/icons/github.svg"
alt="GitHub icon"
aria-hidden="true"
loading="lazy" />
</a>
<a
href="https://tmh-outnabout.netlify.app/"
class="primary-btn"
aria-label="Visit the live Out 'n About website"
target="_blank"
rel="noopener noreferrer"
>Go to website<img
src="./src/assets/icons/icons/navigate.svg"
alt="LinkedIn icon"
aria-hidden="true"
loading="lazy" />
</a>
</div>
</div>
<div class="video-wrapper">
<video
autoplay
loop
muted
aria-label="Video showcasing the Out 'n About website">
<source src="./src/assets/images/outnabout.mp4" type="video/mp4" />
<!-- Display message to the user in case browser does not support video -->
Your browser does not support the video tag.
</video>
</div>
</div>
<span class="project-underline" aria-hidden="true"></span>
</article>
<!-- Rainy Days project -->
<article class="project-wrapper">
<div class="outer-container">
<div class="text-outer-wrapper">
<h2>Rainy Days</h2>
<div class="text-inner-wrapper">
<h3>Type:</h3>
<p>Online store for jackets</p>
</div>
<div class="text-inner-wrapper">
<h3>Description:</h3>
<p>
This project is part of my front-end development coursework, where I
developed an online store called Rainy Days for jackets. The goal was
to create a dynamic website that uses the WordPress REST API to manage
and display products from WooCommerce.
</p>
<button
class="description-btn read-more-btn"
aria-label="Open modal to read more about Rainy Days project">
Read more..
</button>
</div>
<div class="description-wrapper">
<span class="project-description-underline" aria-hidden="true"></span>
<article class="text-inner-wrapper">
<h4>Key Features:</h4>
<ul>
<li>
Products are fetched via the WordPress REST API from WooCommerce.
</li>
<li>
A responsive grid displays available jackets with images and
prices.
</li>
<li>Each product has its own detail page with more information.</li>
<li>
All product data is fetched using JavaScript, allowing for smooth
updates
</li>
<li>
The layout adapts to different screen sizes for an optimal user
experience.
</li>
<li>
The site is hosted using a static host, ensuring fast load times.
</li>
</ul>
</article>
<span class="project-description-underline" aria-hidden="true"></span>
<article class="text-inner-wrapper">
<h4>Technical Overview:</h4>
<p>
This project utilizes the WordPress REST API to manage product data.
JavaScript is used to fetch an array of product data from the
WooCommerce API and render them on the homepage as thumbnails.
Product detail page: Individual product data is fetched based on an
id search parameter and displayed on the product detail page.
Deployment The website is deployed on Netlify
</p>
</article>
<span class="project-description-underline" aria-hidden="true"></span>
<article class="text-inner-wrapper">
<h4>Technologies Used:</h4>
<ul>
<li>Figma for designing prototypes.</li>
<li>GitHub for version control.</li>
<li>WordPress (headless setup).</li>
<li>WooCommerce (product management).</li>
<li>JavaScript (API fetching and rendering).</li>
<li>HTML5/CSS3 (front-end structure and styling).</li>
<li>
WCAG 2.1 Compliance with a focus on accessibility, including alt
text for images, keyboard navigation, and semantic HTML.
</li>
<li>Netlify (for deployment).</li>
</ul>
</article>
<span class="project-description-underline" aria-hidden="true"></span>
<div class="text-inner-wrapper">
<h4>Tech Stack:</h4>
<div
class="tech-wrapper"
aria-label="wrapper with used programs and tools">
<img
src="./src/assets/icons/programming-languages/javascript-svgrepo-com.webp"
alt="JavaScript icon"
aria-label="JavaScript"
title="JavaScript" />
<img
src="./src/assets/icons/programming-languages/html-5-svgrepo-com.webp"
alt="HTML5 icon"
aria-label="HTML5"
title="HTML5" />
<img
src="./src/assets/icons/programming-languages/css-3-svgrepo-com.webp"
alt="CSS3 icon"
aria-label="CSS3"
title="CSS3" />
<img
src="./src/assets/icons/programming-languages/wordpress-color-svgrepo-com.webp"
alt="WordPress icon"
aria-label="WordPress"
title="WordPress" />
<img
src="./src/assets/icons/programming-languages/figma-svgrepo-com.webp"
alt="Figma icon"
aria-label="Figma"
title="Figma" />
<img
src="./src/assets/icons/programming-languages/github-svgrepo-com.webp"
alt="GitHub icon"
aria-label="GitHub"
title="GitHub" />
<img
src="./src/assets/icons/programming-languages/git-svgrepo-com.webp"
alt="Git icon"
aria-label="Git"
title="Git" />
<img
src="./src/assets/icons/programming-languages/vs-code-svgrepo-com.webp"
alt="Visual Studio Code icon"
aria-label="Visual Studio Code"
title="Visual Studio Code" />
<img
src="./src/assets/icons/programming-languages/woocommerce-icon-svgrepo-com.svg"
alt="WooCommerse icon"
aria-label="WooCommerse"
title="WooCommerse" />
</div>
</div>
<button
class="description-btn read-less-btn"
aria-label="Open modal to read more about Out 'n About project">
Read less..
</button>
</div>
<div class="project-btn-container">
<a
href="https://github.com/Torehirth/Rainy-Days"
class="primary-btn"
aria-label="View Rainy Days project repository on GitHub"
target="_blank"
rel="noopener noreferrer"
>View repository<img
src="./src/assets/icons/icons/github.svg"
alt="GitHub icon"
aria-hidden="true"
loading="lazy" />
</a>
<a
href="https://tmh-rainydays-cms.netlify.app/"
class="primary-btn"
aria-label="Visit the live Rainy Days website"
target="_blank"
rel="noopener noreferrer"
>Go to website<img
src="./src/assets/icons/icons/navigate.svg"
alt="LinkedIn icon"
aria-hidden="true"
loading="lazy" />
</a>
</div>
</div>
<div class="video-wrapper">
<video
autoplay
loop
muted
aria-label="Video showcasing the Rainy Days website">
<source src="./src/assets/images/rainy-days.mp4" type="video/mp4" />
<!-- Display message to the user in case browser does not support video -->
Your browser does not support the video tag.
</video>
</div>
</div>
<span class="project-underline" aria-hidden="true"></span>
</article>
<!-- Community Science Museum project -->
<article class="project-wrapper">
<div class="outer-container">
<div class="text-outer-wrapper">
<h2>Community Science Museum</h2>
<div class="text-inner-wrapper">
<h3>Type:</h3>
<p>Museum website for children/young adults</p>
</div>
<div class="text-inner-wrapper">
<h3>Description:</h3>
<p>
This is my semester project for the first semester of Front-End
Development. The website is responsive and engaging. It was designed
for a children's museum, targeting kids aged 7-15 and families. It
features a playful yet simple design, and emphasizes clean code, and a
mobile-first approach.
</p>
<button
class="description-btn read-more-btn"
aria-label="Open modal to read more about Community Science Museum project">
Read more..
</button>
</div>
<div class="description-wrapper">
<span class="project-description-underline" aria-hidden="true"></span>
<article class="text-inner-wrapper">
<h4>Key Features:</h4>
<ul>
<li>
6 Pages: Home, Explore, Exhibitions, Events, Involvement, Visit.
</li>
<li>Responsive Design: Optimized for mobile and desktop</li>
<li>
WCAG Compliance: Follows accessibility principles for color
contrast, hierarchy, and navigation.
</li>
<li>
SEO Optimized: Meta tags, alt text for images, and content
strategy in place.
</li>
<li>Fast Loading: All images optimized to be under 200kb.</li>
<li>Google Maps Integration: Interactive map on the Visit page.</li>
</ul>
</article>
<span class="project-description-underline" aria-hidden="true"></span>
<article class="text-inner-wrapper">
<h4>Technologies Used:</h4>
<ul>
<li>Figma for designing prototypes.</li>
<li>GitHub for version control.</li>
<li>HTML5 and CSS3 for structuring and styling the website.</li>
<li>Gantt chart for project planning.</li>
<li>
WCAG 2.1 Compliance with a focus on accessibility, including alt
text for images, keyboard navigation, and semantic HTML.
</li>
<li>Netlify for deployment.</li>
</ul>
</article>
<span class="project-description-underline" aria-hidden="true"></span>
<div class="text-inner-wrapper">
<h4>Tech Stack:</h4>
<div
class="tech-wrapper"
aria-label="wrapper with used programs and tools">
<img
src="./src/assets/icons/programming-languages/html-5-svgrepo-com.webp"
alt="HTML5 icon"
aria-label="HTML5"
title="HTML5" />
<img
src="./src/assets/icons/programming-languages/css-3-svgrepo-com.webp"
alt="CSS3 icon"
aria-label="CSS3"
title="CSS3" />
<img
src="./src/assets/icons/programming-languages/figma-svgrepo-com.webp"
alt="Figma icon"
aria-label="Figma"
title="Figma" />
<img
src="./src/assets/icons/programming-languages/github-svgrepo-com.webp"
alt="GitHub icon"
aria-label="GitHub"
title="GitHub" />
<img
src="./src/assets/icons/programming-languages/git-svgrepo-com.webp"
alt="Git icon"
aria-label="Git"
title="Git" />
<img
src="./src/assets/icons/programming-languages/vs-code-svgrepo-com.webp"
alt="Visual Studio Code icon"
aria-label="Visual Studio Code"
title="Visual Studio Code" />
</div>
</div>
<button
class="description-btn read-less-btn"
aria-label="Open modal to read more about Out 'n About project">
Read less..
</button>
</div>
<div class="project-btn-container">
<a
href="https://github.com/Torehirth/Semester-Project-1"
class="primary-btn"
aria-label="View Community Science Museum project repository on GitHub"
target="_blank"
rel="noopener noreferrer"
>View repository<img
src="./src/assets/icons/icons/github.svg"
alt="GitHub icon"
aria-hidden="true"
loading="lazy" />
</a>
<a
href="https://tmh-semester-project-1.netlify.app/"
class="primary-btn"
aria-label="Visit the live Community Science Museum website"
target="_blank"
rel="noopener noreferrer"
>Go to website<img
src="./src/assets/icons/icons/navigate.svg"
alt="LinkedIn icon"
aria-hidden="true"
loading="lazy" />
</a>
</div>
</div>
<div class="video-wrapper">
<video
autoplay
loop
muted
aria-label="Video showcasing the Community Science Museum website">
<source
src="./src/assets/images//community-science-museum.mp4"
type="video/mp4" />
<!-- Display message to the user in case browser does not support video -->
Your browser does not support the video tag.
</video>
</div>
</div>
</article>
</section>
</div>
<!-- Skills section -->
<section class="section-wrapper asset-colour">
<div id="skills" class="section">
<header class="section-heading">
<h1>My skills</h1>
<span class="heading-underline" aria-hidden="true"></span>
</header>
<div class="spacing-4" aria-hidden="true"></div>
<div
class="skills-container"
aria-label="infinite horizontal spinning carousel with tool stack icons">
<div class="skill-slider"></div>
<!-- duplicating the HTML inside ".skill-slider" (JS) to get the infinite slide motion -->
<div class="skill-slider"></div>
</div>
</div>
</section>
<!-- About section -->
<section id="about" class="primary-colour">
<div class="section">
<header class="section-heading">
<h1>About me</h1>
<span class="heading-underline" aria-hidden="true"></span>
</header>
<div class="spacing-4" aria-hidden="true"></div>
<div>
<article class="about-container">
<div class="full-wrapper">
<div class="main-wrapper">
<h2>Hi there!</h2>
<p>
My name is Tore Mæland Hirth, a dedicated front-end developer in
training, I’m halfway through my formal education in front-end
development, where I have gained solid experience in HTML, CSS,
JavaScript, and WordPress. I have hands-on skills in creating
responsive, accessible, and user-centered websites using modern web
technologies. My knowledge of GitHub and version control helps ensure
smooth project collaboration, while my work with CSS and JavaScript
allows me to bring dynamic designs and functionality to life.
</p>
<p>
I'm currently working on various projects, including "Out 'n About,"
an online blog built with WordPress as a headless CMS and the
WordPress REST API. In this project, I fetch and display product data
using JavaScript. I also focus on optimizing performance and ensuring
compliance with web standards such as WCAG for accessibility.
</p>
<p>
Beyond technical proficiency, I’m passionate about UX/UI design
principles, understanding the importance of designing with empathy,
and creating intuitive interfaces that enhance user experiences. My
academic journey and ongoing projects have given me strong
problem-solving skills, creativity, and an eye for detail.
</p>
<p>
Looking forward, I'm excited to leverage my growing expertise to build
robust digital experiences, contribute to impactful projects, and
continue evolving as a developer in the dynamic world of front-end
development.
</p>
</div>
<figure class="secondary-wrapper">
<img
src="./src/assets/images/climb-profile.webp"
alt="Me and my partner climbing on Hægefjell during summer"
loading="lazy" />
<figcaption>
Climbing at Hægefjell with my partner during summer, one of the
outdoor activities I enjoy in my spare time.
</figcaption>
</figure>
</div>
</article>
</div>
</div>
</section>
<!-- Experience section -->
<section id="experience" class="asset-colour">
<div class="section">
<header class="section-heading">
<h1>Work experience and education</h1>
<span class="heading-underline" aria-hidden="true"></span>
</header>
<div class="spacing-4" aria-hidden="true"></div>
<div>
<!-- Key qualifications -->
<section class="qualification-container">
<h2>Key qualifications</h2>
<div class="qualification-wrapper">
<article class="qualification-articles">
<h3>Solution-oriented</h3>
<ul>
<li>
Finding solutions to various problems is something I do on an
everyday basis through my studies and my work.
</li>
</ul>
</article>
<article class="qualification-articles">
<h3>Strong IT skills</h3>
<ul>
<li>
I have a broad interest in IT and technology and possess an
understanding of various IT systems and applications.
</li>
</ul>
</article>
</div>
<div class="qualification-wrapper">
<article class="qualification-articles">
<h3>Communication skills</h3>
<ul>
<li>
I effectively communicate daily in Norwegian and English,
emphasizing efficient problem-solving and a good customer
experience.
</li>
</ul>
</article>
<article class="qualification-articles">
<h3>Eager to learn</h3>
<ul>
<li>
I enjoy learning new things and am always looking for opportunities
to expand my knowledge.
</li>
</ul>
</article>
</div>
</section>
<!-- Work experience -->
<div class="experience-outer-container">
<section class="left">
<h2>Work experience</h2>
<article class="card-container">
<div class="experience-date">
<time datetime="2019-10">October 2019</time>
<p>- Present</p>
</div>
<h3>Customer service representative</h3>
<p>Trucknor Hordaland AS</p>
<ul>