-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.html
126 lines (117 loc) · 5.82 KB
/
experience.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Henry Græsberg's Experience</title>
<script src="https://kit.fontawesome.com/39cedbd120.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="Global.css">
<link rel="stylesheet" href="navStylesheet.css">
</head>
<body>
<nav id="NavMenu">
<i class="fa-solid fa-bars-staggered fa-2xl" id="NavMenuOpen" onclick="ChangeNavMenu()"></i>
<div class="Content">
<h2 class="MenuLink"><a href="index.html">Home</a></h2>
<h2 class="MenuLink"><a href="experience.html">Experience</a></h2>
<div id="OutsideLinks">
<div class="MenuLink" id="Github">
<a href="https://www.github.com/henrygraesberg" target="_blank">
<i class="fab fa-github-square fa-2xl"></i>
</a>
</div>
<div class="MenuLink" id="Twitch">
<a href="https://www.twitch.tv/ToasterVan" target="_blank">
<i class="fa-brands fa-twitch fa-2xl"></i>
</a>
</div>
</div>
<div id="Footer">
<p>Created using vanilla <br>HTML, CSS and JavaScript. <br>Icons from <a href="https://fontawesome.com/" target="_blank">Font Awesome</a>.</p>
<p>Source code can be found <br>on <a href="https://github.com/henrygraesberg/Portfolio">Github</a>.</p>
</div>
</div>
<script src="navScript.js"></script>
</nav>
<div class="deprecated-warn">
<a href="https://graesberg.com">WARNING: This portfolio is no longer being updated, new experience and projects can be found at graesberg.com</a>
</div>
<div id="ContentWrapper">
<main>
<div style="grid-column: 4 / span 6; background: var(--dark-bg); margin-bottom: var(--spacing); padding: 2rem; min-width: fit-content;">
<h1>Experience</h1>
</div>
<section class="left">
<h2>Programming Class <span style="font-size: large;">* 3 schoolyears(2017-2020) @ Ruseløkka Skole</span></h2>
<p><ul class="Experience">
<li>Experience gained in:</li>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Python</li>
<li>Lego Mindstorms</li>
<li>Scratch</li>
</ul>
</ul></p>
</section>
<div class="seperator"></div>
<section class="right">
<h2>First Lego Leauge <span style="font-size: large;">* 2 seasons</span></h2>
<p><ul class="Experience">
<li>Experience gained in:</li>
<ul>
<li>Lego Mindstorms</li>
<li>And lots of teamwork :)</li>
</ul>
<li>Accomplishments:</li>
<ul>
<li>Oslo Champions (<b>2018</b> & <b>2019</b>)</li>
<li>Scandinavia Technology Prize 1st place (<b>2018</b> & <b>2019</b>)</li>
<li>Scandinavia Robot Competition 1st place (<b>2018</b> & <b>2019</b>)</li>
<li><b>2018</b> Razorback Invitational Mechanical Design Award 1st place</li>
<li><b>2019</b> Detroit World Festival Mechanical Design Award 2nd place</li>
</ul>
</ul></p>
</section>
<div class="seperator"></div>
<section class="left">
<h2>Game Development <span style="font-size: large;">* 1 summer intership(2022) @ Innova Interactive Studio</span></h2>
<p><ul class="Experience">
<li>Experience gained in:</li>
<ul>
<li>Unity</li>
<li>C#</li>
<li>JSON</li>
</ul>
</ul></p>
</section>
<div class="seperator"></div>
<section class="right">
<h2>Information Technology <span style="font-size: large">* 2 schoolyears(22/23 and 23/24) @ Blindern VGS</span></h2>
<p><ul class="Experience">
<li>Experience gained in:</li>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
<li>Python</li>
<li>Pygame</li>
</ul>
</ul></p>
</section>
<section class="left">
<h2>Other classes @ Blindern <span style="font-size: large">* 2 schoolyears(22/23 and 23/24) @ Blindern VGS</span></h2>
<p><ul class="Experience">
<li>Experience gained in:</li>
<ul>
<li>Physics (From Physics 1 & 2)</li>
<li>Chemistry (From Chemistry 1)</li>
<li>Mathematics (From R1 & R2)</li>
</ul>
</ul></p>
</section>
</main>
</div>
</body>
</html>