diff --git a/cv.md b/cv.md
new file mode 100644
index 0000000..8048eb5
--- /dev/null
+++ b/cv.md
@@ -0,0 +1,45 @@
+# About me
+
+My name is Danik Lutsev. You can contact me by email(danlootsev@gmail.com) or in social networks ([Telegram](https://t.me/SixStringer436)).
+
+# Skills
+
+HTML/CSS
+Javascript
+React
+
+# Code Examples
+
+Code for disable scroll on website:
+
+```javascript
+window.disableScroll = function() {
+ const widthScroll = window.innerWidth - document.body.offsetWidth;
+ document.body.dbScrollY = window.scrollY
+ document.body.style.cssText =
+ `
+position:fixed;
+top: ${-window.scrollY}px;
+left:0;
+width:100%;
+overflow: hidden;
+height: 100vh;
+padding-right: ${widthScroll}px;
+`;
+}
+window.enableScroll = function() {
+ document.body.style.cssText = ``;
+ window.scroll = ({ top: document.body.dbScrollY })
+
+}
+```
+
+# Education
+
+Studied at the Belarusian Institute of Law
+
+
+# English
+
+I had a practice of speaking on foreign trips. I can also read documentation, literature, watch films.
+In my opinion, my English level is **A2**.
diff --git a/img/Photo.JPG b/img/Photo.JPG
new file mode 100644
index 0000000..0032a34
Binary files /dev/null and b/img/Photo.JPG differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..f26b0c5
--- /dev/null
+++ b/index.html
@@ -0,0 +1,73 @@
+
+
+