Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Img/photo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# A Junior Developer resume #

1. **Name** : Evgeniy Vasilko;
2. **Contact info** : tel +380639694507
Email: ShadeZP@gmail.com
3. **Summary** : I have 8 years of experience in various fields of engineering (aircraft, crane building). Over the years, I have gained diverse skills such as organizing teamwork, self-training, time management. The main reason for the change of profession is the desire to develop and learn something new, which unfortunately is not possible at the current job.
4. **Skills** : HTML, CSS, JS, GIT.
5. **Code examples** : [github](https://github.com/ShadeZP "my github"), [codepen](https://codepen.io/shadezp "my codepen")
6. **Expirience** : [codewars](https://www.codewars.com/users/ShadeZP "my codewars"), [freecodecamp](https://www.freecodecamp.org/shadezp "my freecodecamp")
7. **Education** : Higher education at ZNTU with a degree in "Lifting and Transporting Machines and Mechanisms". In the area of front-end programming mostly self-education + I am currently studying courses from the The [Rolling Scopes community](https://rs.school/js/ "top webinar").
8. **English** : I think closer to the *Beginner*, but I am able to read technical documentation and constantly improve my language skills.
30 changes: 30 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Evgeniy Vasilko</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>A Junior Developer resume</h1>
<img class="photo" src="Img/photo.jpg" alt="My photo" width="300" >
</header>
<main>
<ol class="resume">
<li><strong>Name:</strong> Evgeniy Vasilko.</li>
<li><strong>Contact info:</strong> tel +380639694507<br>Email: ShadeZP@gmail.com</li>
<li><strong>Summary:</strong><li> I have 8 years of experience in various fields of engineering (aircraft, crane building). Over the years, I have gained diverse skills such as organizing teamwork, self-training, time management.The main reason for the change of profession is the desire to develop and learn something new, which unfortunately is not possible at the current job.</li>
<li><strong>Skills:</strong> HTML, CSS, JS, GIT.</li>
<li><strong>Code examples: </strong><a href="https://github.com/ShadeZP" title="my github"> github</a>, <a href="https://codepen.io/shadezp" title="my codepen"> codepen</a></li>
<li><strong>Expirience: </strong><a href="https://www.codewars.com/users/ShadeZP" title="my codewars">codewars</a>, <a href="https://www.freecodecamp.org/shadezp" title="my freecodecamp"> freecodecamp</a></li>
<li><strong>Education: </strong>Higher education at ZNTU with a degree in "Lifting and Transporting Machines and Mechanisms". In the area of front-end programming mostly self-education + I am currently studying courses from the The <a href="https://rs.school/js/" title="top webinar">Rolling Scopes community</a></li>
<li><strong>English: </strong>I think closer to the <em>Beginner</em>, but I am able to read technical documentation and constantly improve my language skills.</li>
</ol>
</main>
</div>
</body>
</html>
27 changes: 27 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
body {
background-color: #D4E4F7;
margin: 0px;
}

h1 {
font-family: Georgia, 'Times New Roman', Times, serif;
color: #B85B14;
margin: 15px auto;
display: flex;
justify-content: center;
}

.photo {
transform: rotate(-90deg);
margin: 50px 50px;
}

.container {
max-width: 1000px;
margin: 0px auto;
}

.resume {
font-family: Arial, Helvetica, sans-serif;
color: #341C09;
}