-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (75 loc) · 2.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mateusz Urbański – Software Developer</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat|Nunito" rel="stylesheet">
<link rel="stylesheet" href="css/minireset.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/animations.css">
<link rel="stylesheet" href="css/user.css">
<script defer type="text/javascript" src="js/main.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.0/js/all.js"></script>
</head>
<body>
<div id="wallpaper" class="wallpaper" data-image="images/coding.jpg"></div>
<div class="content">
<aside class="side">
<figure id="picture" class="picture">
<div class="picture-shadow"></div>
<img id="pictureImage" class="picture-image"
src="images/photo.jpg"
width="320"
height="320">
</figure>
</aside>
<main class="about">
<h1 class="name">
Mateusz Urbański
</h1>
<p class="job">
Software Developer
</p>
<hr class="hr">
<div class="description">
<p>
I'm software developer currently working at <a class="htd" href="https://htdevelopers.com">HTDevelopers</a>. I mainly use Ruby and Elixir in my daily work.
</p>
<br>
<p>
You can click the button above to visit my company website. If you’d like to get in touch, feel free to say hello through any of the social links below.
</p>
</div>
<div class="contact">
<a class="button" href="mailto:[email protected]">
Get in touch
</a>
</div>
<ul class="social">
<li>
<a href="https://github.com/MatUrbanski">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/mateusz-urbański-8b55298b/">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</main>
</div>
<noscript>
<style type="text/css">
.wallpaper {
animation-name: zoomOut;
}
.picture {
animation-name: dropIn;
}
</style>
</noscript>
</body>
</html>