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.

Languages
-
Russian Native language
-
Spanish Intermediate
-
English Pre-Intermediate
Skills
- HTML
- CSS
- Javascript
- React
- Node.js
- Freemarker
Experience

MFC., Petrozavodsk, Russia
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 - 2025Information Systems and Programming
Specialization: Web and Multimedia Application Developer -
Auxiliary Assembly and Maintenance of Microcomputer Systems
2022 - 2022Ipartek Formación
-
Frontend development
2023 - 2024HTML Academy
-
JS / Front-end Pre-school
2025 - presentRS 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"));