-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·88 lines (87 loc) · 4.21 KB
/
index.html
File metadata and controls
executable file
·88 lines (87 loc) · 4.21 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Olexandr Kuzmenko</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="data/css/main.css">
</head>
<body>
<div class=container>
<header>
<nav>
<div class="navbar-container">
<h1 class="logo">Olexandr Kuzmenko</h1>
<a href="#" class="menu-btn"></a>
</div>
<ul class="nav-ul">
<li class="nav-li">
<a class="nav-a" href="#about">About me</a>
</li>
<li class="nav-li">
<a class="nav-a" href="projects.html#projects">Projects</a>
</li>
<li class="nav-li">
<a class="nav-a" href="#contacts">Contacts</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="text-block">
<h3 id="about">About me:</h3>
<p class="text">
Hi, my name is Sasha. I study business informatics at the University of Vienna and learn web development in my spare time.
Feel free to contact me for a more detailed C.V.
</p>
<h3>Skills</h3>
<h4>Development</h4>
<ul>
<li class="li-first">JavaScript, CSS, HTML, React</li>
<li class="li-first">Deployment of linux services (e.g Nginx)</li>
<li class="li-first">Linux power user</li>
<li class="li-first">Russian(native), German(living in Austria for more than 10 year) and English (watching a lot of series, reading books and <strong>lots</strong> of technical documentation) both written and spoken.
</ul>
<h4>System Administration</h4>
<ul>
<li class="li-first"><p>In-depth knowledge of Windows Imaging, especially of Microsoft Deployment Toolkit:</p>
<ul>
<li class="li-second">
<p>Automating driver injection using single task sequence for every computer system</p>
</li>
<li class="li-second">
<p>User State Migration Tool integration for seamless migration of user data</p>
<ul>
<li class="li-third">Writing xml for more precise migration</li>
</ul>
</li class="li-second">
<li class="li-second">
<p>Writing custom scripts for additional post install customization</p>
</li>
</ul>
</li>
<li class="li-first">
<p>
Active Directory / GPOs
</p>
</li>
<li class="li-first">
<p>etc.</p>
</li>
</ul>
</div>
</main>
<footer>
<ul id="contacts" class="contact">
<li>Contact me:</li>
<li><a href="mailto:kuzmenko.sasha.dev@gmail.com">>Via Mail</a> </li>
<li><a href="linkedin.com/in/alexandr-kuzmenko-963898143">>On LinkedIn</a></li>
<li><a href="https://github.com/Exand0">>On GitHub</a></li>
</ul>
<p class="copyright">Made by Olexandr Kuzmenko © 2021</p>
</footer>
<div>
<script src="data/js/core.js"></script>
</body>
</html>