diff --git a/README.md b/README.md index a7ac464..3f03f01 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ -# rsschool-cv \ No newline at end of file +https://Forlocks.github.io/rsschool-cv/cv +https://Forlocks.github.io/rsschool-cv/ \ No newline at end of file diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..2a8bf8b --- /dev/null +++ b/cv.md @@ -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% \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..17e530f --- /dev/null +++ b/index.html @@ -0,0 +1,68 @@ + + + + + + Aleksey Shelukhin + + + +

Aleksey Shelukhin

+

Contact information

+ +

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

+ +

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

+ +

Education

+

Courses on the educational platform Stepik:

+ +

RS School Courses:

+ +

Languages

+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..21db7fe --- /dev/null +++ b/style.css @@ -0,0 +1,3 @@ +html { + scroll-behavior: smooth; +} \ No newline at end of file