cv-photo

Asya L

Junior Frontend Developer

Skills

  • HTML
  • CSS
  • CSS
  • SASS
  • GIT
  • Bootstrap
  • Gulp
  • Accessibility
  • JavaScript
  • TailwindCSS

About me

I am a self-taught web developer. I have been a content manager and website administrator. Furthermore, I have more than a year of experience in web development. I specialize in responsible design, HTML5, CSS3, and JavaScript. I am also ready for remote work.

Education

 – 

Bachelor

Russian State Social University

Jurisprudence Moscow

GPA 4.27

Certificates:

Projects:

Language

  • • English

    (Professional Working Proficiency)

  • • Russian

    (Native)

Interests

  • tag
  • tag
  • tag
  • tag
  • tag
  • tag
  • tag

Happy Halloween!

Experience

  •  –  LLC Reg.ru Domains and Hosting Moscow, remote

    Technical support specialist

    • assisted in registering domain names

    • maintained hosting services

    • set up a mail server

    • installed of SSL certificates

    • achieved a 10% growth in the team, because took a lot of clients for consulting and solved their problems with websites

    • KPI 96.96% (Aug 2024)

  •  – 

    LLC Ecotopia, LLC Automat

    Moscow, remote

    Content manager

    • supported websites

    • created content, and pictures, designed an interface

    • created text content for describing goods

    • used Adobe Photoshop, Coral Draw, and other software

    • researched competitors to improve products

    • worked in an administrative panel

Code examples

Body mass index calculation


                            function bmi(weight, height) {
                            let indexHeight = Math.pow(height, 2)
                            let index = weight ⁄ indexHeight
                            if(index ≤ 18.5) {
                                return "Underweight";
                                } else if(index ≤ 25.0) {
                                return "Normal";
                                }  else if(index ≤ 30.0) {
                                return "Overweight";
                                } else {
                                return "Obese";
                                }
                            }
                            

Set alarm, function


                            function setAlarm(employed, vacation) {
                            if (employed 	&& !vacation) {
                                return true;
                                } else if (!employed && vacation) {
                                return false;
                                } else {
                                return false;
                                }
                            }