About me
Currently on maternity leave. During this time, I decided to delve into frontend development. What started as a hobby quickly became a passion, and now I aim to turn this interest into a professional career. My goal is to join a team where I can apply and develop my skills, contributing to the creation of high-quality and innovative web products.
Education
-
- 2022-...
- The Rolling Scopes School
-
- 2021-2021
- Innopolis University
-
- 2009-2016
- Nizhny Novgorod State Technical University n.a. R.E. Alekseev
Projects
Code example
// функция добавляющая класс error
function formAddError(input, massage) {
const formControl = input.parentElement;
formControl.classList.add('_error');
input.classList.add('_error');
const small = formControl.querySelector('small');
small.innerText = massage;
}