-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (136 loc) · 4.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SimpleFast | websites that are simple, clean and fast</title>
<meta
name="description"
content="Pretty and lightweigth sites development for pure and simple presentation purposes."
/>
<link href="css/styles.css" rel="stylesheet" media="screen" />
<script defer>
window.onscroll = function() {
scrollFunction();
};
function scrollFunction() {
if (
document.body.scrollTop > 400 ||
document.documentElement.scrollTop > 400
) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</head>
<body>
<header>
<h1>Simple<em>Fast</em></h1>
<aside>A perfect way to present yourself.</aside>
</header>
<main>
<h2>You don't need much to be noticed</h2>
<h3>You can do it with my help</h3>
<div class="thats_me">
<div class="my_photo"></div>
<div class="about_me">
<p>
I’m Jack a junior front end developer & junior SEO specialist
based in the Poland, willing to work Globally with Startups and
Agencies. I design & develop compelling apps, intuitive
interfaces, and engaging brands. All helping to improve response,
drive sales, and boost profitability.
</p>
</div>
</div>
<p><strong>You can find me on </strong></p>
<p>
<a href="https://github.com/kruzyk" title="GitHub profile"
><strong>GitHub</strong></a
>
/
<a href="https://gitlab.com/kruzyk" title="GitLab profile"
><strong>GitLab</strong></a
>
/
<a
href="https://www.linkedin.com/in/jacek-kruzycki/"
title="LinkedIn profile"
>LinkedIn</a
>
/
<a href="https://www.codewars.com/users/kruzyk" title="Codewars profile"
>Codewars</a
>
/
<a
href="https://edabit.com/user/B6xyiKPR5dpaE97A9"
title="Edabit profile"
>Edabit</a
>
/
<a href="https://dribbble.com/kruzyk" title="Dribble profile"
>Dribbble</a
>
/
<a href="https://codepen.io/kruzyk" title="Codepen profile">Codepen</a>
</p>
<h2>Scope</h2>
<div class="skills_tools">
<div class="skills">
<p class="bold">In progress</p>
<ul>
<li class="html5_badge">HTML5</li>
<li class="css3_badge">CSS3</li>
<li class="js_badge">JavaScript</li>
<li class="react_badge">ReactJS</li>
<li class="gatsby_badge">GatsbyJS</li>
<li class="rwd_badge">RWD</li>
<li class="scrum_badge">Scrum</li>
<li class="kanban_badge">Kanban</li>
</ul>
</div>
<div class="tools">
<p class="bold">Tools</p>
<ul>
<li class="git_badge">Git</li>
<li class="svn_badge">SVN</li>
<li class="vscode_badge">Visual Studio Code</li>
<li class="jira_badge">Jira</li>
</ul>
</div>
<div class="in_progress">
<p class="bold">ToDo</p>
<ul>
<li class="sass_badge">Sass, Less</li>
<li class="docker_badge">Docker</li>
<li class="smarty_badge">Smarty</li>
<li class="bootstrap_badge">Bootstrap</li>
<li class="pug_badge">PUG</li>
<li class="wordpress_badge">Wordpress</li>
</ul>
</div>
</div>
</main>
<hr />
<blockquote>
"We need to remember that at it's core a web page is simple."" <br />
— Justin Jackson,
<a href="https://justinjackson.ca/webmaster/">I'm a fucking webmaster</a>
</blockquote>
<hr />
<div>
<div class="footer">
<a onclick="topFunction()" title="Go to top"
><div id="myBtn" class="circle_btn ">^</div></a
>
</div>
</div>
</body>
</html>