-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lukas Kollarovic</title>
<script>
window.va =
window.va ||
function () {
(window.vaq = window.vaq || []).push(arguments);
};
</script>
<script defer="" src="/_vercel/insights/script.js"></script>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<header>
<h1>Lukas Kollarovic</h1>
<p>
Welcome to my personal website. I am a software engineer with a
passion for web development.
</p>
</header>
<div
class="image-container"
style="
display: flex;
justify-content: center;
max-width: 300px;
margin: auto;
">
<img
src="./images/the-one-and-only.jpg"
alt="A descriptive alternative text"
style="
border-radius: 8px;
width: 100%;
height: auto;
aspect-ratio: 1 / 1;
" />
</div>
<section class="my-projects">
<h2>My Projects</h2>
<p>
Currently, my project is top secret, so secret in fact, I haven't even
started it. Stay tuned for updates or not. 🚀
</p>
</section>
<section class="contact">
<h2>Contact</h2>
<p>
Feel free to reach out via email at
<a href="mailto:[email protected]"
>
</p>
</section>
</div>
</body>
</html>