diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..05e134f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/node_modules
+package-lock.json
+style.scss
+style.css.map
\ No newline at end of file
diff --git a/assets/GitHub-Mark-64px.png b/assets/GitHub-Mark-64px.png
new file mode 100644
index 0000000..182a1a3
Binary files /dev/null and b/assets/GitHub-Mark-64px.png differ
diff --git a/assets/GitHub_Logo.png b/assets/GitHub_Logo.png
new file mode 100644
index 0000000..e03d8dd
Binary files /dev/null and b/assets/GitHub_Logo.png differ
diff --git a/assets/photo.jpg b/assets/photo.jpg
new file mode 100644
index 0000000..c57c642
Binary files /dev/null and b/assets/photo.jpg differ
diff --git a/assets/rs_school_js.svg b/assets/rs_school_js.svg
new file mode 100644
index 0000000..3b80540
--- /dev/null
+++ b/assets/rs_school_js.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/cv.md b/cv.md
new file mode 100644
index 0000000..fec9016
--- /dev/null
+++ b/cv.md
@@ -0,0 +1,53 @@
+## Dmitry Khomichenko
+
+### Contacts
+
+- E-mail: iddf1994one@gmail.com
+
+- Viber: +37529 659-75-83
+
+- Telegram: @BlackBerryID
+
+### Soft skills
+
+- Courteous
+- Dependable
+- Calm
+- Open-minded
+- Diligent
+
+### Technical skills
+
+- HTML5
+- CSS3
+- Javascript basics
+- Git (Github)
+
+### Code examples
+
+```
+function euclideanDistance(point1, point2){
+ const length = point1.length;
+ let result = 0;
+ for (let i = 0; i < length; i++) {
+ result += Math.pow((point2[i] - point1[i]), 2);
+ }
+ return Math.round(Math.sqrt(result) * 100) / 100;
+}
+```
+
+### Experience
+
+- I read book: 'grokking algorithms'
+- I did a task from 2021Q1 stage 1: 'virtual piano'. You can check it [here](https://rolling-scopes-school.github.io/blackberryid-JSFE2021Q1/virtual-piano/)
+- I passed most of the lessons from WesBos's course: [JS30](https://javascript30.com/)
+
+### Education
+
+- I graduated from BNTU with a degree in marketing and economics.
+- I'm currently taking a free course from EPAM.
+
+### English
+
+**_B1_**
+_I improve my English by communicating with foreigners every week through a cell phone app._
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..58dcdbe
--- /dev/null
+++ b/index.html
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
Dmitry Khomichenko
+
newbie web developer
+
+
+
+
Education
+
2012-2015
+
Marketing and Economics
+
Belarusian National Technical University
+
+
+
English proficiency
+ B1
+
+
+
+
+
+
About Me
+
+ I am an experienced sales manager. Programming is new to me. But
+ believe me, it will not last long. I will conquer this top, it's
+ just a matter of time.
+
+
+
+
Experience
+
+
+
I read the book: "grokking algorithms"
+
+
+
+ I did a task from 2021Q1 stage 1: ‘virtual piano’. You can check
+ it
+ here
+
+
+
+
+ I passed most of the lessons from WesBos’s course:
+ JS30
+
+
+
+
Code example:
+
+ function euclideanDistance(point1, point2){
+ const length = point1.length;
+ let result = 0;
+ for (let i = 0; i < length; i++) {
+ result += Math.pow((point2[i] - point1[i]), 2);
+ }
+ return Math.round(Math.sqrt(result) * 100) / 100;
+ }
+