diff --git a/README.md b/README.md index 7a0980e..9a93786 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -https://Antongron.github.io/rsschool-cv/cv +https://Antongron.github.io/rsschool-cv/ diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..f7f1dad --- /dev/null +++ b/cv.md @@ -0,0 +1,23 @@ +1. Malkin Anton + +2. My contacts: +- discord: Antongron#5216; +- Email: 14gron@gmail.com; +- mobile: +7(951)551-31-10. +3. My main purposes: +- to work in a interesting company as a web-developer; +- become an excellent and useful developer; +- to work in proect on React, Angular. +4. Hard skills: +- basic HTML; +- basic CSS; +- basic JavaScript. +5. Code example: + +6. My work experience: +- Now empty, but i'm sure so here will be somthing interesting soon :) + +7. Work experiense: +- Apply on RSSchool course. +8. English level A2+. + diff --git a/index.html b/index.html new file mode 100644 index 0000000..065b60b --- /dev/null +++ b/index.html @@ -0,0 +1,111 @@ + + + + + + + + + CV: Front-end Malkin Anton + + + + + +
+
+ +
+
+ my photo +
+
+

Hello!

+

My fullname is Malkin Anton. I'm beginner Fron-end Developer. Nice to met you!

+
+
+
+ +
+
+
+ + +
+

About me:

+

+ Been born in 1996. +
+
+ I have unfinished technical education (studied at VSU, Physycs Faculty). +
+
+ Previously didn't work in the IT and looking for an internship. +
+
+ Practiced in local company as trasinee frontend-developer for one month and made small studying project. + Junior web-developer, i'm ready to work remote. +

+

My skills:

+ +

My projects:

+ +
+ + +
+ + + + \ No newline at end of file diff --git a/src/avatar 200.jpg b/src/avatar 200.jpg new file mode 100644 index 0000000..36ea965 Binary files /dev/null and b/src/avatar 200.jpg differ diff --git a/src/call.png b/src/call.png new file mode 100644 index 0000000..95cd41b Binary files /dev/null and b/src/call.png differ diff --git a/src/gmail.png b/src/gmail.png new file mode 100644 index 0000000..d123045 Binary files /dev/null and b/src/gmail.png differ diff --git a/src/telegram.png b/src/telegram.png new file mode 100644 index 0000000..7e6f46d Binary files /dev/null and b/src/telegram.png differ diff --git a/style.css b/style.css new file mode 100644 index 0000000..a9c623c --- /dev/null +++ b/style.css @@ -0,0 +1,101 @@ +* { + margin: 0; + padding: 0; + font-family: "Kumbh Sans", sans-serif; +} + +p, +.projects-items, +.skills-item { + font-size: 48px; +} + +a { + color: #6e6464; + text-decoration: none; +} + +h1 { + font-size: 120px; + text-align: left; +} + +li { + max-width: fit-content; +} + +h2, +h3 { + font-size: 56px; + text-align: center; + margin: 56px 0; + font-weight: bolder !important; + + /* text-shadow: black 1px 1px 10px; */ +} + +.wrapper { + max-width: 1440px; + margin: 10px auto; + padding: 0 20px; + display: flex; + flex-direction: column; +} + +.nav-bar { + display: flex; + list-style: none; + justify-content: space-between; + margin: 20px auto 40px auto; +} + +.projects-item, +.skills-item { + margin-left: 50px; +} +.nav-item, +.projects-item { + position: relative; + font-size: 36px; + border: white 2px solid; + padding: 0px 10px; +} + +.nav-item::after, +.footer-item::after, +.projects-item::after { + content: ""; + position: absolute; + background-color: black; + height: 3px; + width: 0; + left: 0; + bottom: 0; + transition: 0.3s; +} + +.nav-item:hover::after, +.footer-item:hover::after, +.projects-item:hover::after { + width: 100%; +} + +.nav-item:hover { + color: rgba(0, 0, 0, 0.7); +} + +.header-item { + display: flex; +} + +.header-text { + margin-left: 13vw; +} + +.footer-item { + position: relative; + font-size: 26px; + border: white 2px solid; + padding: 0px 10px; + margin-left: 40px; +}