forked from danielhalasz/danielhalasz.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
256 lines (244 loc) · 5.77 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
<!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" />
<link rel="stylesheet" type="text/css" href="./css/normalize.css" />
<link
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<script src="https://code.iconify.design/1/1.0.6/iconify.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js"></script>
<script src="pixi.min.js"></script>
<title>Daniel Halasz Portfolio</title>
</head>
<body>
<!-- pixi.js background -->
<script type="text/javascript"></script>
<!-- navigation -->
<div class="container grid grid-cols-10 auto-rows-auto">
<div class="nav">
<ul>
<li
class="
about-nav
grid
justify-items-center
auto-cols-min
p-4
ml-60
mt-6
cursor-pointer
hover:text-gray-500
w-20
"
>
<a href="index.html">
<span
class="iconify ml-1.5"
data-inline="false"
data-icon="carbon:user-avatar"
style="font-size: 32px"
aria-label="about"
></span
>About</a
>
</li>
<li
class="
projects-nav
grid
justify-items-center
auto-cols-min
p-4
ml-36
cursor-pointer
hover:text-gray-500
w-24
"
>
<a href="projects.html">
<span
class="iconify ml-3.5"
data-inline="false"
data-icon="carbon:cube"
style="font-size: 32px"
aria-label="projects"
>
</span>
Projects</a
>
</li>
<li
class="
contact-nav
grid
justify-items-center
auto-cols-min
p-4
ml-20
cursor-pointer
hover:text-gray-500
w-24
"
>
<a href="contact.html">
<span
class="iconify ml-3"
data-inline="false"
data-icon="carbon:email"
style="font-size: 32px"
aria-label="email"
></span
>Contact</a
>
</li>
</ul>
</div>
<!-- image -->
<div
class="
image
col-start-3 col-end-6
row-start-2 row-end-3
relative
-top-40
-left-6
"
>
<img src="./img/Daniel-Halasz.jpg" alt="portrait" />
</div>
<!-- about -->
<div
class="
about
col-start-7
row-start-2
bg-gray-200
relative
-top-10
w-min
max-h-12
p-3
border-l-2 border-black
"
>
<h2 class="uppercase">About</h2>
</div>
<div
class="
text1
col-start-7 col-end-11
row-start-2
relative
top-10
-left-24
h-auto
w-auto
leading-7
"
>
Hello, I am Daniel Halasz, a freelance developer wearing the glasses of
a photographer and an artistic researcher. Originally from Budapest and
after living in various countries, I am currently working remotely from
Brussels, enjoying the challenges of being a one-man-show and
collaborating with international teams.
</div>
<!-- <div
class="text1 col-start-5 col-end-10 row-start-2 mt-36 ml-16 h-auto w-auto"
>
.
</div> -->
<!-- dev skills -->
<div
class="
devskills
col-start-5 col-end-6
row-start-2
relative
top-52
mt-2
left-20
bg-gray-200
w-max
max-h-12
p-3
border-l-2 border-black
"
>
<h2 class="uppercase">Development skills</h2>
</div>
<div
class="
text1
col-start-5 col-end-11
row-start-3
relative
-top-6
-left-1
h-auto
w-auto
leading-7
"
>
Learning: JavaScript, React, MongoDB, Wordpress, PixiJS, HTML5, CSS3,
GitHub
<br />Know: Adobe Photoshop, Indesign, Lightroom, Premiere Pro, Final
Cut Pro
</div>
<!-- projects -->
<!-- contact -->
<!-- social -->
</div>
<!-- animation fade in -->
<script>
TweenMax.staggerFrom(
".about",
1.2,
{
delay: 0,
opacity: 0,
x: 0,
ease: Expo.easeInOut,
},
0.0
);
TweenMax.staggerFrom(
".text1",
1.2,
{
delay: 0,
opacity: 0,
x: 0,
ease: Expo.easeInOut,
},
0.0
);
TweenMax.staggerFrom(
".devskills",
1.2,
{
delay: 0,
opacity: 0,
x: 0,
ease: Expo.easeInOut,
},
0.0
);
TweenMax.staggerFrom(
".image",
1.2,
{
delay: 0,
opacity: 0,
x: 0,
ease: Expo.easeInOut,
},
0.0
);
</script>
</body>
</html>