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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# rsschool-cv
https://Forlocks.github.io/rsschool-cv/cv
https://Forlocks.github.io/rsschool-cv/
54 changes: 54 additions & 0 deletions cv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Aleksey Shelukhin

## Contact information
* **E-mail:** sheluhen@mail.ru
* **GitHub:** https://github.com/Forlocks
* **Discord server RSS:** Forlock (@Forlocks)

## About me
I am 21 years old, study at the St. Petersburg State University of Aerospace Instrumentation. At the beginning of my second year at university, I became interested in the profession of a front-end developer, after which I began to take various free courses on learning HTML, CSS and JS. I hope to get more knowledge in the RS School courses so that I can become a junior front-end developer as a result.

## Skills
* Markdown
* HTML
* CSS (+Bootstrap)
* JS (basics)
* Git and GitHub
* VSCode

## Code example
```
'use strict';

/*
A function that returns an array of integers
from the given number up to and including 1
*/

function reverseArr(n) {
let arr = [];
let j = -1;

while (n > 0) {
arr[++j] = n;
--n;
}

return arr;
}
```

## Projects
* https://Forlocks.github.io/Curriculum-Vitae/
* Next projects coming soon...

## Education
* Courses on the educational platform Stepik:
* Web Development for Beginners: HTML and CSS (Certificate)
* JavaScript for Beginners (Certificate)
* RS School Courses:
* JavaScript/Front-end. Stage 0 (Certificate)

## Languages
* **English:** А2 (Elementary)
* **Russian:** 100%
68 changes: 68 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Aleksey Shelukhin</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<h1>Aleksey Shelukhin</h1>
<h2>Contact information</h2>
<ul>
<li>E-mail: sheluhen@mail.ru</li>
<li>GitHub: https://github.com/Forlocks</li>
<li>Discord server RSS: Forlock (@Forlocks)</li>
</ul>
<h2>About me</h2>
<p>I am 21 years old, study at the St. Petersburg State University of Aerospace Instrumentation. At the beginning of my second year at university, I became interested in the profession of a front-end developer, after which I began to take various free courses on learning HTML, CSS and JS. I hope to get more knowledge in the RS School courses so that I can become a junior front-end developer as a result.</p>
<h2>Skills</h2>
<ul>
<li>Markdown</li>
<li>HTML</li>
<li>CSS (+Bootstrap)</li>
<li>JS (basics)</li>
<li>Git and GitHub</li>
<li>VSCode</li>
</ul>
<h2>Code example</h2>
<pre><code>'use strict';

/*
A function that returns an array of integers
from the given number up to and including 1
*/

function reverseArr(n) {
let arr = [];
let j = -1;

while (n &gt; 0) {
arr[++j] = n;
--n;
}

return arr;
}</code></pre>
<h2>Projects</h2>
<ul>
<li>https://Forlocks.github.io/Curriculum-Vitae/</li>
<li>Next projects coming soon...</li>
</ul>
<h2>Education</h2>
<h3>Courses on the educational platform Stepik:</h3>
<ul>
<li>Web Development for Beginners: HTML and CSS (Certificate)</li>
<li>JavaScript for Beginners (Certificate)</li>
</ul>
<h3>RS School Courses:</h3>
<ul>
<li>JavaScript/Front-end. Stage 0 (Certificate)</li>
</ul>
<h2>Languages</h2>
<ul>
<li>English: А2 (Elementary)</li>
<li>Russian: 100%</li>
</ul>
</body>
</html>
3 changes: 3 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
html {
scroll-behavior: smooth;
}