-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
304 lines (284 loc) · 17.5 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
<!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 | Slo</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="resources/styles/reset.css">
<link rel="stylesheet" href="resources/styles/index.css">
<script src="resources/scripts/index.js" defer></script>
</head>
<body>
<header>
<a href="https://github.com./slolow" target="_blank" class="github-logo-link"><img src="resources/images/github-mark/github-mark-white.svg" alt="github logo" class="github-logo"></a>
<nav>
<ul>
<li><a href="#banner">home</a></li>
<li><a href="#about-me">about me</a></li>
<li><a href="#projects">projects</a></li>
<li><a href="#contact">contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- banner -->
<div id="banner" class="main-section">
<p>Hi,</p>
<p class="name-paragraph">my name is <span class="yellow dancing">...</span> <span class="yellow" id="full-name"></span></p>
<p>I'm a <span class="yellow">fullstack developer.</span></p>
<a href="#about-me"><span class="arrow down">↓</span></a>
</div>
<!-- about me -->
<section id="about-me" class="main-section">
<h2>About me</h2>
<div id="about-me-container" class="flex-container">
<div id="about-me-section">
<div id="about-me-desc" class="about-me-section carousel-item">
<p>Since I built my <a href="#projects" id="first-project-link" class="project-button">first web app</a> in 2020, I'm spending a lot of my free time to learn about
web development. Currently I'm following the <a href="https://join.codecademy.com/learn/paths/front-end-engineer-career-path-b/" target="_blank">
Front-End Engineer Career Path</a> from Codecademy. I also took more backend related courses like
<a href="https://cs50.harvard.edu/web/2018/" target="_blank">CS50’s Web Programming with Python and JavaScript</a> from Harvard University.
See some of my projects <a href="#projects">here</a>.
For my future, I'm looking for an opportunity to work in the field of web development and to learn more about it.</p>
</div>
<div id="about-me-list" class="about-me-section carousel-item">
<ul>
<li>🎓 I have a M.Sc. degree in electrical engineering</li>
<li>💻 I worked for <a href="https://www.sma.de/" target="_blank">SMA</a>, <a href="https://www.iee.fraunhofer.de/" target="_blank">Fraunhofer IEE</a> and <a href="https://www.htw-berlin.de/" target="_blank">HTW</a> as a student</li>
<li>🏙️ I'm living in Berlin</li>
<li>🗣️ I speak German, French and English</li>
<li>⚽ I love to play football</li>
<li>🎼 I listen to a lot of music</li>
<li>📽️ I like to go to the cinema</li>
<li>🍳 I like cooking and I love eating</li>
<li>🙏 I'm a kind, respectful and polite person</li>
</ul>
</div>
<!-- next and previous buttons -->
<div id="about-me-button-container" class="button-container">
<button type="button" class="carousel-button previous-button about-me-button" disabled>←</button>
<div class="carousel-indicator about-me-indicator" id="about-me-indicator-0"></div>
<div class="carousel-indicator about-me-indicator" id="about-me-indicator-1"></div>
<button type="button" class="carousel-button next-button about-me-button">→</button>
</div>
</div>
<div id="about-me-style-section"></div>
</div>
</section>
<!-- projects -->
<section id="projects" class="main-section">
<h2>Projects</h2>
<!-- book-rating-app -->
<div class="project-container carousel-item" id="book-rating-project">
<h3 class="project-title">1. Book Review</h3>
<section class="project-description">
<h4>Description:</h4>
<p>This book rating app is part of the <a href="https://cs50.harvard.edu/web/2018/" target="_blank">CS50’s Web Programming with Python and JavaScript</a> course from Harvard University.</p>
</section>
<div class="project-video-container">
<iframe src="https://www.youtube.com/embed/6rESpya70nc" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<section class="project-tech-stack">
<h4>Tech Stack:</h4>
<ul>
<li>Python ( <a href="https://flask.palletsprojects.com/en/2.2.x/" target="_blank">Flask</a> )</li>
<li>PostgreSQL</li>
<li>HTML</li>
<li><a href="https://getbootstrap.com/" target="_blank">Bootstrap</a></li>
<li><a href="https://www.goodreads.com/" target="_blank">Goodreads</a> API</li>
</ul>
</section>
<section class="project-features">
<h4>Within this App a user can:</h4>
<ul>
<li>Registrate, login and logout</li>
<li>Search for books</li>
<li>Submit reviews</li>
<li>See average rating from <a href="https://www.goodreads.com/" target="_blank">Goodreads</a></li>
<li>Make API requests</li>
</ul>
</section>
</div>
<!-- chat-app -->
<div class="project-container carousel-item">
<h3 class="project-title">2. Chat App</h3>
<section class="project-description">
<h4>Description:</h4>
<p>This chat app is part of the <a href="https://cs50.harvard.edu/web/2018/" target="_blank">CS50’s Web Programming with Python and JavaScript</a> course from Harvard University.</p>
</section>
<div class="project-video-container">
<iframe src="https://www.youtube.com/embed/IbtaYdm6HOw" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<section class="project-tech-stack">
<h4>Tech Stack:</h4>
<ul>
<li>JavaScript</li>
<li>Python ( <a href="https://flask.palletsprojects.com/en/2.2.x/" target="_blank">Flask</a> )</li>
<li><a href="https://sass-lang.com/" target="_blank">SASS</a></li>
<li>HTML</li>
<li><a href="https://socket.io/" target="_blank">Socket.IO</a></li>
</ul>
</section>
<section class="project-features">
<h4>Within this App a user can:</h4>
<ul>
<li>Sign in</li>
<li>Create channels (chatrooms)</li>
<li>See and join existing channels</li>
<li>Send and receive messages in real time</li>
<li>Create and send drawings</li>
</ul>
</section>
</div>
<!-- Dashboard electrical network -->
<div class="project-container carousel-item" id="dashboard-project">
<h3 class="project-title">3. Dashboard</h3>
<section class="project-description">
<h4>Description:</h4>
<p>This dashboard shows the timeseries for various metrics in an fictive electrical grid. It's the first web app I've made. All timeseries are randomly generated.</p>
</section>
<div class="project-video-container">
<iframe src="https://www.youtube.com/embed/m30xeWKA3Js" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<section class="project-tech-stack">
<h4>Tech Stack:</h4>
<ul>
<li>Python ( <a href="https://dash.plotly.com/" target="_blank">Dash</a> )</li>
</ul>
</section>
<section class="project-features">
<h4>Within this App a user can:</h4>
<ul>
<li>Select between rural and industrial part of the grid</li>
<li>Select a day</li>
<li>Select between active and reactive power</li>
<li>Select between measurement and different forecast methods</li>
</ul>
<p>to update the displayed metrics.</p>
</section>
</div>
<!-- Cloud -->
<div class="project-container carousel-item">
<h3 class="project-title">4. Minimal cloud</h3>
<section class="project-description">
<h4>Description:</h4>
<p>This is a simple cloud to upload files and create folders.</p>
</section>
<div class="project-video-container">
<iframe src="https://www.youtube.com/embed/oixHn4sj0GY" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<section class="project-tech-stack">
<h4>Tech Stack:</h4>
<ul>
<li>Python ( <a href="https://flask.palletsprojects.com/en/2.2.x/" target="_blank">Flask</a> )</li>
<li>HTML</li>
<li><a href="https://palletsprojects.com/p/jinja/" target="_blank">Jinja2</a></li>
<li><a href="https://getbootstrap.com/" target="_blank">Bootstrap</a></li>
</ul>
</section>
<section class="project-features">
<h4>Within this App a user can:</h4>
<ul>
<li>Login and Logout</li>
<li>Create and delete folder</li>
<li>Upload files</li>
</ul>
</section>
</div>
<!-- portfolio -->
<div class="project-container carousel-item">
<h3 class="project-title">5. Portfolio</h3>
<section class="project-description">
<h4>Description:</h4>
<p>This Portfolio is the current webpage you're looking at.
It's part of the <a href="https://join.codecademy.com/learn/paths/front-end-engineer-career-path-b/" target="_blank">Front-End Engineer Career Path</a> from Codecademy,
which I'm currently working on.</p>
</section>
<div class="project-video-container empty">
</div>
<section class="project-tech-stack">
<h4>Tech Stack:</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</section>
<section class="project-features">
<h4>Within this Portfolio a user can:</h4>
<ul>
<li>Learn about me</li>
<li>See my projects</li>
<li>Contact me</li>
</ul>
</section>
</div>
<!-- next and previous buttons -->
<div class="button-container">
<button type="button" class="carousel-button previous-button project-button" disabled>←</button>
<div class="carousel-indicator project-indicator" id="project-indicator-0"></div>
<div class="carousel-indicator project-indicator" id="project-indicator-1"></div>
<div class="carousel-indicator project-indicator" id="project-indicator-2"></div>
<div class="carousel-indicator project-indicator" id="project-indicator-3"></div>
<div class="carousel-indicator project-indicator" id="project-indicator-4"></div>
<button type="button" class="carousel-button next-button project-button">→</button>
</div>
</section>
<!-- contact -->
<section id="contact" class="main-section">
<h2>Here's my email, <span>so write me</span>, maybe</h2>
<div class="flex-container contact-container">
<form action="https://formsubmit.co/266516a83c21c8595171f1c2d327d848" method="POST" id="contact-form">
<label for="fname">First name:</label>
<!-- name must start with one uppercase or lowercase letter followed by 2 to 49 lowwercase letters -->
<input type="text" name="first name" placeholder="first name" id="fname" minlength="3" maxlength="50" class="form-input" pattern="^[A-Za-z][a-z]{2,49}" required>
<p class="form-input-error">Please type in a first name between 3 and 50 characters</p>
<label for="lname">Last name:</label>
<input type="text" name="last name" placeholder="last name" id="lname" minlength="3" maxlength="50" class="form-input" pattern="^[A-Za-z][a-z]{2,49}" required>
<p class="form-input-error">Please type in a last name between 3 and 50 characters</p>
<label for="email">Email Adress:</label>
<input type="email" name="email" placeholder="email" id="email" maxlength="256" pattern="[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}" class="form-input" required>
<p class="form-input-error">Please type in a correct email adress</p>
<label for="message">Message:</label>
<textarea name="message" cols="30" rows="10" placeholder="Your message" id="message" minlength="3" maxlength="5000" class="form-input" required></textarea>
<p class="form-input-error">Please write a message between 3 and 5000 characters</p>
<!-- reroute the user to this page -->
<input type="hidden" name="_next" value="https://slolow.github.io/">
<!-- the subject of the mail I recive -->
<input type="hidden" name="_subject" value="Contact via portfolio!">
<!-- the autoresponse that will be send to the user -->
<input type="hidden" name="_autoresponse" value="Hello here is Laszlo. Thank you for contacting me. I try to answer as fast as possible. King regards.">
<!-- template of how the email I receive will look like -->
<input type="hidden" name="_template" value="table">
<!-- like this I can directly reply to the user from the mail I received -->
<input type="hidden" name="_replyto">
<!-- <input type="submit" class="primary-button" value="Send" id="contact-form-submit" disabled> -->
<input type="submit" class="primary-button" value="Send" id="contact-form-submit">
</form>
<div class="i-love-to-code">
<p>コ</p>
<p>ー</p>
<p>ド</p>
<p>を</p>
<p>書</p>
<p>く</p>
<p>の</p>
<p>が</p>
<p>大</p>
<p>好</p>
<p>き</p>
</div>
</div>
<p class="thank-you-message">Your message was <span class="text-shadow-highlighted-text">successfully delivered!</span></p>
</section>
<footer>
<p class="copyright">© Laszlo Starost <span id="currentYear"></span></p>
<a href="https://github.com./slolow" target="_blank" class="github-logo-link"><img src="resources/images/github-mark/github-mark-white.svg" alt="github logo" class="github-logo"></a>
</footer>
</main>
</body>
</html>