viktoryia.tsialiatnikava@gmail.com | @boriisovvna | +375292969255 | Minsk, Belarus
Passionate Frontend Developer making a career transition into tech with a strong drive for continuous learning.
Self-taught and highly motivated, I’ve already built several websites and love bringing ideas to life through
clean code and thoughtful design. Proficient in HTML, CSS. I value creativity, collaboration, and user-centered
design, and I’m excited to contribute to innovative projects and grow as part of a forward-thinking development team.
Git - intermediate
HTML/CSS – fluent
JavaScript – basic
VS Code - intemediate
Bachelor of Media & Communication
EHU
Vilnius, Lithuania
Belarussian – fluent
Russian – fluent
English – intermediate
Italian - basic
Self-Taught Frontend Developer
Personal and Educational Projects
2024 — Present
function fakeBin(x) {
let result = '';
for (let i = 0; i < x.length; i += 1) {
if (x[i] >= 5) {
result += 1;
} else {
result += 0;
}
}
return result;
}