avatar

Dmitrij Sobolevskij

Junior Front-End Developer

Contacts

  • Phone

    +995 574 111 694

  • Email

    sobolevskii.dmit@gmail.com

  • GitHub

    sobdima

Skills

  • Html

  • Css

  • Js

  • Git, GitHub

Languages

  • English - A1

  • Russian - native

  • Belarusian - native

Education

  • University: Belarusian National Technical University (2017)
  • hyperskill.org (introduction)

Experience

piano

Piano

to-do-list

To-Do List

About

Easy learner and easy to deal with so I work well in any team. Responsible and attentive to details. I have a creative, structured mindset and excellent communication skills.

For a long time I was somewhat a dreamer, but now I prefer seeing the results of my work. Always ready to expand my horizons and try something new.

Code Example

                            /*burger-menu*/
                            const signature = document.querySelector(".signature");
                            const burger = document.querySelector(".burger");
                                                
                            function toggleMenu () {
                                signature.classList.toggle("showMenu");
                                burger.classList.toggle("active");
                            };
                                                
                            burger.addEventListener("click", toggleMenu);
                            signature.addEventListener("click", toggleMenu);