-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (97 loc) · 3.55 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
<!DOCTYPE html>
<html>
<head>
<title>Andrew Kobylin | Web Developer</title>
<meta charset="utf-8">
<meta name="description" content="Личный сайт Андрея Кобылина. Тут мои достижения и навыки." />
<meta name="keywords" content="andrew kobylin, андрей кобылин, web developer, teaching kids, games, computer science, веб разработчик" />
<style>
body {
font-family: monospace;
font-size: 1.2rem;
font-weight: 500;
padding: 20px;
}
a,
a:visited {
color: black;
}
a:hover {
color: blue;
}
</style>
</head>
<body>
<nav>
<span> > </span>
<a href="./">EN</a>
<a href="./?lang=ru">RU</a>
<a href="./?lang=ua">UA</a>
</nav>
<div class="home-container">
<h1 class="title-name" t>Andrew Kobylin</h1>
<h2 class="title-position" t>Web Developer</h2>
<h3 t>"Trying to finish my tasks.."</h3>
<h4 class="work-duration" t>Work in programming since 2010</h4>
<div class="home-row">
<div class="skills">
<h3><span t>Skills</span>:</h3>
<ul>
<li>JavaScript(ES6,7), React, Angular</li>
<li>CSS, LESS, BEM</li>
<li>NodeJS, ExpressJS</li>
<li>npm, gulp, grunt</li>
<li>PHP, Wordpress</li>
<li>MYSQL, MongoDB</li>
</ul>
</div>
<div class="projects">
<h3><span t>Public Projects</span>:</h3>
<ul>
<li><a href="http://soloma.libraries.kiev.ua/" target="_blank">Сайт Библиотек</a></li>
<li><a href="http://kobylin.github.io/single-cell-automata/" target="_blank">Single Cellular Automaton</a></li>
<li><a href="https://kobylin.github.io/fractals/" target="_blank">Pifagors Fractal</a></li>
</ul>
<h3><span t>Companies</span>:</h3>
<ul>
<li>Beetroot</li>
<li>Luxoft</li>
<li>WTMG</li>
<li>Innovecs</li>
<li>Oberig</li>
</ul>
<h3><span t>Volunteering</span>:</h3>
<ul>
<li><a href="http://codeclub.com.ua" target="_blank">CodeClub</a></li>
<li><a href="https://coderdojo.com/" target="_blank">CodeDojo</a></li>
</ul>
</div>
</div>
<div class="contacts">
<h3><span t>Contacts</span>:</h3>
<ul>
<li>
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<a href="https://www.facebook.com/andrew.kobylin" target="_blank">Facebook</a>
</li>
<li>
<a href="https://github.com/kobylin/" target="_blank">GitHub</a>
</li>
</ul>
</div>
</div>
</body>
<script src="translation.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110289543-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-110289543-1');
</script>
</html>