-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (148 loc) · 5.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./src/assets/favicon.png" type="image/x-icon" />
<title>Victor Zottmann</title>
<link rel="stylesheet" href="./src/styles/reset.css" />
<link rel="stylesheet" href="./src/styles/index.css" />
<script
src="https://kit.fontawesome.com/a378bd57e2.js"
crossorigin="anonymous"
></script>
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="page">
<header class="profile">
<img
class="profile__picture"
src="./src/assets/profile.jpeg"
alt="Victor Zottmann's profile picture"
/>
<div class="profile__title">
<h1>Victor Zottmann</h1>
<p>Frontend Developer</p>
</div>
<div class="social-media">
<div class="social-media__platform">
<i class="fa-brands fa-github fa-lg" aria-hidden="true"></i>
<a
class="social-media__link"
href="https://github.com/victorzottmann"
target="_blank"
>GitHub</a
>
</div>
<div class="social-media__platform">
<i
class="fa-brands fa-linkedin fa-lg"
style="color: #0a65c1;"
aria-hidden="true"
></i>
<a
class="social-media__link"
href="https://www.linkedin.com/in/vzottmann/"
target="_blank"
>LinkedIn</a
>
</div>
<div class="social-media__platform">
<i class="fa-solid fa-download" aria-hidden="true"></i>
<a
class="social-media__link"
href="./src/documents/Resume_VictorZottmann.pdf"
target="_blank"
>Resume</a
>
</div>
</div>
</header>
<main>
<section class="section__about">
<h2>Hello, I'm Victor. Nice to meet you!</h2>
<p>
I'm a Frontend Developer with UI/UX design skills living in Sydney,
Australia.
</p>
<p>
Coming from a background in audio post production (see Creative
Projects below), in 2021 I decided to explore a long-standing
interest in software engineering to try for a career in this field,
and recently completed a Master's degree in Interaction Design, with
a focus on programming.
</p>
<p>
Embracing the principles of T-Shaped development,
<strong
>I focus on specializing in frontend development while
simultaneously cultivating a broad understanding of related
disciplines</strong
>, such as backend development and databases. This approach allows
me to tackle different challenges and collaborate effectively within
multidisciplinary teams.
</p>
<p>
Feel free to get in touch with me on
<a href="https://www.linkedin.com/in/vzottmann/">LinkedIn</a>, or
via my email address listed in my resume.
</p>
</section>
<section class="section__projects">
<h2>My Projects</h2>
<nav class="projects-nav">
<ul class="projects-nav__list">
<li class="projects-nav__item active">Programming Projects</li>
<span class="projects-nav__separator">·</span>
<li class="projects-nav__item">Creative Projects</li>
</ul>
</nav>
<div class="projects-container"></div>
</section>
</main>
</div>
<footer>
<div class="social-media">
<div class="social-media__platform">
<i class="fa-brands fa-github fa-lg" aria-hidden="true"></i>
<a
class="social-media__link"
href="https://github.com/victorzottmann"
target="_blank"
>GitHub</a
>
</div>
<div class="social-media__platform">
<i
class="fa-brands fa-linkedin fa-lg"
style="color: #0a65c1;"
aria-hidden="true"
></i>
<a
class="social-media__link"
href="https://www.linkedin.com/in/vzottmann/"
target="_blank"
>LinkedIn</a
>
</div>
<div class="social-media__platform">
<i class="fa-solid fa-download" aria-hidden="true"></i>
<a
class="social-media__link"
href="./src/documents/Resume_VictorZottmann.pdf"
target="_blank"
>Resume</a
>
</div>
</div>
<p>© 2024 Victor Zottmann</p>
</footer>
<script src="./src/js/index.js" type="module"></script>
</body>
</html>