Curriculum Vitae

Hi, I'm Viktoriia Tozik, a Junior Frontend Developer

Studying frontend development with a growing interest in game creation. Passionate about learning new technologies and building interactive, user-friendly applications. Ready to contribute to a team and grow through hands-on experience.

photo of Viktoriia
chat icon

Languages

  • Russian Native language
  • Spanish Intermediate
  • English Pre-Intermediate
skill icon

Skills

  • HTML
  • CSS
  • Javascript
  • React
  • Node.js
  • Freemarker

Experience

Company Logo

MFC., Petrozavodsk, Russia

calendar icon August 2023 - August 2024
play icon Programmer
calendar icon In-person

Development and maintenance of web applications using HTML, CSS, JavaScript, and Freemarker. Main focus on identifying and fixing front-end bugs. Collaboration with back-end developers through bug reporting and task coordination. Independent resolution of critical issues. Creation of dynamic templates using Freemarker.

Education

  • Vocational Education and Training (VET) Diploma

    2022 - 2025

    Information Systems and Programming
    Specialization: Web and Multimedia Application Developer

  • Auxiliary Assembly and Maintenance of Microcomputer Systems

    2022 - 2022

    Ipartek Formación

  • Frontend development

    2023 - 2024

    HTML Academy

  • JS / Front-end Pre-school

    2025 - present

    RS School

Code example:

            
              function spinWords(string){
                let newString = [];
                
                for (let word of string.split(" ")) {
                  if ( word.length >= 5)  {
                      newString.push (word.split('').reverse().join(''));
                      } else {
                        newString.push(word);
                      }
                }
                return newString.join(' ');
              }
              console.log(spinWords("Hey fellow warriors")); 
            
          

Pet Projects