About me
My aim is an interesting job with a lot of challenging tasks and the opportunity to constantly develop and learn new things. I am ready to work hard and very persistent in the face of difficulties. The lack of working experience in my case can be an advantage: I already have a lot of knowledge (in some areas), but at the same time it is easy for me to be onboarded in any workflow in a new company.

Contacts
- starkovsr@gmail.com
- +7 904 519-17-21
- Saint-Petersburg
- github.com/StarkovSergey
- t.me/Morhel
- Discord: Sergey Starkov#8393
Education
Saint-Petersburg State Chemical and Pharmaceutical University (2016); work experience in pharmaceutical industry — 10 years
2011 — 2016, Saint-Petersburg
Knowledge
- Semantic HTML
- modern CSS
- SASS, Gulp, BEM methodology
- JS basic (ES6+)
- Git
- Web design basics
Skills
- English (intermediate), Russian (native)
- creating layout web interface (HTML, CSS)
- Figma
Experience
The Rolling Scopes School — JS/FE Pre-School (JavaScript): certificate
2021
HTML Academy — interactive online course Professional HTML & CSS, levels 1 and level 2
2020 — 2021
Pink — adaptive website

Technologies: SCSS, BEM, gulp, JavaScript
Museum — fixed website for desktop

Technologies: HTML, CSS, basic JS
Sedona — fixed website for desktop

Technologies: HTML, CSS
Code examples
const explode = (string) = > {
const array = [...string].map((num) = > +num);
let newString = '';
for (let number of array) {
for (let i = 0; i < number; i++) {
newString+= number;
}
}
return newString;
};