diff --git a/README.md b/README.md index a7ac464..0ab8b9e 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# rsschool-cv \ No newline at end of file +https://igwyd.github.io/rsschool-cv/ + +https://igwyd.github.io/rsschool-cv/cv \ No newline at end of file diff --git a/assets/favicons/icon.png b/assets/favicons/icon.png new file mode 100644 index 0000000..7127da7 Binary files /dev/null and b/assets/favicons/icon.png differ diff --git a/assets/img/avatar.png b/assets/img/avatar.png new file mode 100644 index 0000000..ba2730c Binary files /dev/null and b/assets/img/avatar.png differ diff --git a/assets/logo/rs_school_js.svg b/assets/logo/rs_school_js.svg new file mode 100644 index 0000000..3b80540 --- /dev/null +++ b/assets/logo/rs_school_js.svg @@ -0,0 +1 @@ +rs_school_js \ No newline at end of file diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..e9cefd9 --- /dev/null +++ b/cv.md @@ -0,0 +1,20 @@ +# Igor Demin + +## Contacts + +* **Location:** Riga, Latvia +* **Phone:** +123 456 78 90 +* **Email:** i.demin@hotmail.com +* **GitHub:** [Igwyd](https://github.com/igwyd) + +## About me +My name is Igor and i work in an awesome project. I want to improve my knowledge and skills in order to be more useful in my work. + +## Skills +* Git, GitHub +* Windows and Linux administration +* HTML, CSS, JavaScript (basic knowledge) + +## Languages +* Russian - native +* English - B1 \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..766cb32 --- /dev/null +++ b/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + + + CV + + + +
+ +
+ +
+ +
+
+
+ my photo +
+
+

igor demin

+

js developer

+
+
+ +
+
+

contacts

+
    +
  • Location: Riga, Latvia
  • +
  • Phone: +123 456 78 90
  • +
  • Email: i.demin@hotmail.com
  • +
  • GitHub: Igwyd
  • +
+
+
+

about me

+

My name is Igor and i work as a QA engineer on an awesome project. I want to improve my knowledge and skills in order to be more useful in my work.

+
+
+ +
+
+

skills

+
    +
  • Git, GitHub
  • +
  • Windows and Linux administration
  • +
  • HTML, CSS, JavaScript (basic knowledge)
  • +
+
+
+

expirience

+
    +
  • System Administrator: 2013 - 2020
  • +
  • Quality Assurance: 2020 - present day
  • +
+
+
+ +
+
+

projects

+ +
+
+

code example

+
SELECT * FROM employees 
+WHERE first_name like '____%'
+ORDER BY department_id DESC NULLS LAST;
+                    
+
+
+ +
+
+

education

+
    +
  • University name
  • +
  • QA courses
  • +
  • RS School
  • +
+
+
+

languages

+
    +
  • Russian - native
  • +
  • English - B1
  • +
+
+
+
+ +
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..583ed7d --- /dev/null +++ b/style.css @@ -0,0 +1,155 @@ +*, +*::after, +*::before { + box-sizing: border-box; +} + +ul, +ol { + padding: 0; +} + +body, +span, +img, +h1, +h2, +h3, +h4, +h5, +h6, +p, +ul, +ol, +li, +figure, +figcaption, +blockquote, +dl, +dd { + margin: 0; + font-size: inherit; +} + +ul { + list-style: none; +} + + +input, +button, +textarea, +select { + font: inherit; +} + +* { + margin: 0; + font-family: 'Roboto', sans-serif; + font-size: 18px; + font-weight: 400; +} + +.wrapper { + box-sizing: border-box; + max-width: 1050px; + height: auto; + margin: 0 auto; + +} + +.navigation { + margin-top: 30px; + margin-bottom: 100px; +} + +.menu, +h3 { + color: rgb(64, 117, 95);; +} + +.uppercase { + text-transform: uppercase; + font-weight: 700; + font-size: 24px; +} + +a { + text-decoration: none; +} + +.link{ + display: flex; + justify-content: space-around; +} + +.main { + display: flex; + justify-content: space-around; +} + +.main__boxphoto { + width: 300px; + text-align: right; + margin-bottom: 100px; +} + +.main__photo { + max-width: 200px; + border-radius: 50%; + background-color: rgb(245, 245, 245); +} + +.main__prof{ + width: 600px; + padding-top: 75px; + padding-right: 400px; +} + +.prof { + color: white; + background-color: rgb(64, 117, 95); +} + +.highlight { + display: block; + font-size: 20px; + font-weight: bold; +} + +.skills, +.contacts, +.projects, +.education { + display: flex; + justify-content: space-around; + margin-bottom: 80px; +} + +.skills__sk, +.contacts__con, +.projects__proj, +.education__edu { + width: 300px; + text-align: right; +} + +.skills__exp, +.contacts__about, +.projects__code, +.education__lang { + width: 600px; +} + +.footer { + display: flex; + justify-content: space-around; +} + +.footer__c { + width: 500px; +} + +.rs__logo { + width: 100px; +} \ No newline at end of file