diff --git a/cv.md b/cv.md
new file mode 100644
index 0000000..eba38b0
--- /dev/null
+++ b/cv.md
@@ -0,0 +1,41 @@
+## Aliaksandr Tarhonski
+
+### Contacts
+- __Email__: stdmnstar@gmail.com
+- __Tel__: +375 44 739 4847
+
+### Summary
+I started programming early. Then I studied at a higher educational institution as a mathematician-programmer. However, it so happened that I had to graduate from another educational institution as a radio engineer. But over time, I moved on to work as an administrator of networks, servers. This is what I have been doing for the last 13 years. But I would like to really do programming.
+
+### Skills
+Java, MS SQL, PosgreSQL, MS Server, 1C.....
+
+### Code samples
+```java
+public class MainClass {
+ public static void main(String[] args) {
+ int nDisks = 3;
+ doTowers(nDisks, 'A', 'B', 'C');
+ }
+ public static void doTowers(int topN, char from,
+ char inter, char to) {
+ if (topN == 1){
+ System.out.println("Disk 1 from "
+ + from + " to " + to);
+ }else {
+ doTowers(topN - 1, from, to, inter);
+ System.out.println("Disk "
+ + topN + " from " + from + " to " + to);
+ doTowers(topN - 1, inter, from, to);
+ }
+ }
+}
+ ```
+### Experience
+- course Java (2017)
+
+### Education
+- Military Academy of the Republic of Belarus (radio engineer)
+
+### English
+Level is A2
diff --git a/image.jpg b/image.jpg
new file mode 100644
index 0000000..92e12c1
Binary files /dev/null and b/image.jpg differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..7ccabd9
--- /dev/null
+++ b/index.html
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+ Aliaksanr Tarhonski
+
+
+
+
+
+
RS School
+
+
+
+
+
Aliaksandr Tarhonski
+
+
Contacts
+
+
Mobile: +375 (44) 7394847
+
E-mail: stdmnstar@gmail.com
+
+
+
+
Summary
+
I started programming early. Then I studied at a higher educational institution
+ as a mathematician-programmer. However, it so happened that I had to graduate
+ from another educational institution as a radio engineer. But over time,
+ I moved on to work as an administrator of networks, servers. This is what I
+ have been doing for the last 13 years. But I would like to really do programming.
+
+
+
Skills
+
Java, MS SQL, PosgreSQL, MS Server, 1C…...
+
+
+
Latest code example
+
+ hide/show
+
+
+
+
+
+ public class MainClass {
+ public static void main(String[] args) {
+ int nDisks = 3;
+ doTowers(nDisks, 'A', 'B', 'C');
+ }
+
+ public static void doTowers(int topN, char from,
+ char inter, char to) {
+ if (topN == 1){
+ System.out.println("Disk 1 from "
+ + from + " to " + to);
+ }else {
+ doTowers(topN - 1, from, to, inter);
+ System.out.println("Disk "
+ + topN + " from " + from + " to " + to);
+ doTowers(topN - 1, inter, from, to);
+ }
+ }
+ }
+
+
+
+
+
+
+
+
Experience
+
+
course Java (2017)
+
+
+
+
Education
+
+
Military Academy of the Republic of Belarus (radio engineer)