-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
249 lines (179 loc) · 7.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="index.css">
<link rel="shortcut icon" href="picture/favicon2.png" />
<title>Timon Gisler</title>
</head>
<body>
<div id="whole_nav">
<nav>
<div class="logo">
<h1>Timon Gisler</h1>
<h6>Learning Programmer</h6>
</div>
<div>
<li><a class="button" href="#über_mich">Über mich</a></li>
<li><a class="button" href="#projekte">Projekte</a></li>
<li><a class="button" href="#ausbildung">Ausbildung</a></li>
<li><a class="button" href="#kontaktdaten">Kontaktdaten</a></li>
<!-- <li><a class="button" href="#resume">Resume</a></li> -->
</div>
</nav>
</div>
<div class="c1" id="first">
<div class="overlay"> </div>
<h1>Portfolio</h1>
<img src="picture/logo.png" alt="logo">
</div>
<div class="c aboutMyself" id="über_mich">
<h2>Über mich</h2>
<p>Ich bin momentan im 3-ten Jahr der Informatikmittelschule, nächstes Jahr darf ich das erste Mal in die
Berufswelt einsteigen.
Ich habe eine grosse Passion für das Programmieren und bin sehr neugierig.
</p>
<p>
In meiner Freizeit spiele ich Schach, spiele Tennis und gehe ins Gym.
</p>
<p>
Ich habe zwei jüngere Brüder.
Der eine, David, geht in die Kantonsschule, der andere, Lukas, macht eine Lehre als Kaufmann BMS.
</p>
</div>
<div class="c projekte" id="projekte">
<h2>Projekte (Klicken Sie auf ein Projekt um mehr zu erfahren)</h2>
<div class="flex">
<!-- This is a comment -->
<!-- This is a comment -->
<!-- This is a comment -->
<!-- This is a comment -->
<div class="card" id="mahara">
<a href="https://portfolio.bbbaden.ch/view/view.php?t=vAxkoY9GUt3z0c1b8wsm" target="_blank">
<div class="cardPicture" id="maharaPicture">
<img src="picture/Mahara.png" alt="">
</div>
<div class="cardText" id="maharaText">
<h3>Mahara</h3>
Auf Mahara sind einige Projekte die wir in der Schule gemacht haben. Zusammen mit einer
Dokumentation und was ich daraus gelernt habe.
</div>
</a>
</div>
<div class="card">
<a href="Projekte/Pomodoro/pomodoro.html" target="_blank">
<div class="cardPicture">
<img src="picture/Pomodoro.png" alt="">
</div>
<div class="cardText">
<h3>Pomodoro</h3>
Pomodoro ist eine Zeit-management Technik.
Man arbeit in 25 Minuten Intervallen gefolgt von 5 minuten Pausen.
Dieses Projekt wurde mit Javascript durchgeführt und ist eine Webapp.
</div>
</a>
</div>
<div class="card">
<a href="Projekte/Zitat Generator/zitatGenerator.html" target="_blank">
<div class="cardPicture">
<img src="" alt="">
</div>
<div class="cardText">
<h3>zitatGenerator</h3>
ZitatZitatZitatZitatZitatZitatZitatZitatZitatZitatZitatZitatZitatZitatZitat
</div>
</a>
</div>
<div class="card">
<a href="Projekte/tastaturschreiben/tastaturschreiben.html" target="_blank">
<div class="cardPicture">
<img src="picture/Tastaturschreiben.png" alt="">
</div>
<div class="cardText">
<h3>Tastaturschreiber</h3>
Ein Projekt das mit Javascript gemacht wurde.
Es zählt alle Wörter die du in einer gewissen Zeitspanne eingegeben hast und gibt dann aus wie
viele Wörter du
insgesamt geschrieben hast und wie viele Wörter pro Minute.
Den Timer kann man selber setzen.
</div>
</a>
</div>
<div class="card">
<a href="https://github.com/TimonGisler/Encryptor" target="_blank">
<div class="cardPicture">
<img src="picture\Encryptor.png" alt="">
</div>
<div class="cardText">
<h3>Encryptor</h3>
Ich habe ein Programm erstellt welches einen Text entgegen nimmt und diesen mithilfe dem
Verschlüsselungsalgorithmus DES den Text verschlüsselt.
DES steht für "Data Encryption Standard".
Das Programm gibt auch aus welchen Algorithmus es verwendete und wenn man diesen irgendwo
speichert, kann man
den verschlüsselten text wieder entschlüsseln.
</div>
</a>
</div>
<div class="card">
<a href="https://github.com/TimonGisler/Casino" target="_blank">
<div class="cardPicture">
<img src="picture/Casino.png" alt="">
</div>
<div class="cardText">
<h3>Casino</h3>
Zusammen mit 4 anderen IMS-Schüler erstellten wir ein Casino. In dem Casino gibt es 5 Spiele.
Die Benutzer werden in einer mysql datenbank gespeichert, das Projekt wurde nach Iperka
durchgeführt.
</div>
</a>
</div>
<div class="card">
<div class="cardPicture">
</div>
<div class="cardText">
<!-- text here -->
</div>
</div>
<div class="card">
<div class="cardPicture">
</div>
<div class="cardText">
<!-- text here -->
</div>
</div>
<!-- This is a comment -->
<!-- This is a comment -->
<!-- This is a comment -->
<!-- This is a comment -->
</div>
</div>
<div class="c" id="ausbildung">
<h2>Ausbildung</h2>
<p>
2018 – heute: Informatikmittelschule - Kanti Baden <br>
2017 – 2018: Bezirksschule - Wohlen <br>
2013 – 2017: Sekundarschule - Niederwil <br>
2008 – 2013: Primarschule – Niederwil <br>
</p>
</div>
<div class="c" id="kontaktdaten">
<h2>Kontaktdaten</h2>
<a href="mailto:[email protected]">
<div class="horizontalCard card">
<div class="hCardPicture">
<img src="picture/mail.png" alt="">
</div>
<div class="hCardText">
<h2>[email protected]</h2>
</div>
</div>
</div>
</a>
<!-- <div class="c" id="resume">
<h2>Resume</h2>
</div> -->
</body>
</html>