-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (136 loc) · 6.19 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
<!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>Portfolio Joel Kühle</title>
<link rel="icon" type="image/png" href="media/Icon.PNG">
<link rel="stylesheet" type="text/css" href="css/layout.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<script src="js/IFrameSwitcher.js" defer></script>
</head>
<body>
<div class="wrapper">
<header>
<img src="media/Navigation/Banner.webp" alt="An orange background with logos of some of my projects" class="banner">
<div class="bannerLinks">
<a href="https://www.youtube.com/c/kuhler_stratege" target="_blank">Youtube</a>
<a href="https://de.linkedin.com/in/joel-kuehle-2b3004207" target="_blank">LinkedIn</a>
<a href="https://creaturator.itch.io" target="_blank">itch.io</a>
</div>
</header>
<nav>
<img src="media/Navigation/Bewerbungsbild.webp" alt="A picture of me" class="bewerbungsbild">
<h2>
Joel Kühle
</h2>
<ul>
<li class="navLi">
<span class="navSpan">
<img src="media/Navigation/house.svg" alt="A house" class="navIcon">
<a href="html/startpage.html" class="navLink">Start page</a>
</span>
</li>
<li class="navLi expandLi">
<span class="navSpan">
<img src="media/Navigation/console-controller.svg" alt="A controller" class="navIcon">
<a href="html/overviews/projectOverview.html" class="navLink">Projects</a>
</span>
<ul>
<li class="subLi">
<a href="html/projects/creatures.html" class="navLink">
Creatures in a box
</a>
</li>
<li class="subLi">
<a href="html/projects/mod.html" class="navLink">
alloyed tools
</a>
</li>
<li class="subLi">
<a href="html/projects/biomob.html" class="navLink">
BioMoB
</a>
</li>
<li class="subLi">
<a href="html/projects/orbeats.html" class="navLink">
Orbeats
</a>
</li>
<li class="subLi">
<a href="html/projects/ubisoft.html" class="navLink">
Harvest Gods
</a>
</li>
<li class="subLi">
<a href="html/projects/unity.html" class="navLink">
UI Toggle
</a>
</li>
</ul>
</li>
<li class="navLi expandLi">
<span class="navSpan">
<img src="media/Navigation/play-button.svg" alt="A play icon" class="navIcon">
<a href="html/overviews/youTubeOverview.html" class="navLink">YouTube</a>
</span>
<ul>
<li class="subLi">
<a href="https://www.youtube.com/c/kuhler_stratege" target="_blank" class="navLink">YouTube channel</a>
</li>
<li class="subLi">
<a href="html/youTube.html" class="navLink">YouTube Career</a>
</li>
</ul>
</li>
<li class="navLi">
<span class="navSpan">
<img src="media/Navigation/graduate-cap.svg" alt="A graduate cap" class="navIcon">
<a href="html/education.html" class="navLink">Education</a>
</span>
</li>
<li class="navLi expandLi">
<span class="navSpan">
<img src="media/Navigation/gears.svg" alt="A pair of gears" class="navIcon">
<a href="html/overviews/workOverview.html" class="navLink">Work experience</a>
</span>
<ul>
<li class="subLi">
<a href="html/work/meteoblue.html" class="navLink">
meteoblue
</a>
</li>
<li class="subLi">
<a href="html/work/gog.html" class="navLink">
Game of Goats
</a>
</li>
</ul>
</li>
<li class="navLi">
<span class="navSpan">
<img src="media/Navigation/Info.webp" alt="The letter i" class="navIcon">
<a href="html/others.html" class="navLink">Others</a>
</span>
</li>
<li class="navLi">
<span class="navSpan">
<img src="media/Navigation/envelope.svg" alt="An envelope" class="navIcon">
<a href="html/contact.html" class="navLink">Contact</a>
</span>
</li>
</ul>
</nav>
<main>
<iframe src="html/startpage.html">
</iframe>
</main>
<footer>
<address>
Copyright by Joel Kühle. Icons by <a href="https://www.game-icons.net" target="_blank">game-icons.net</a>
</address>
<a href="html/gdpr.html" class="gdprLink navLink">GDPR</a>
</footer>
</div>
</body>