"> Document

Akhrieva Marina

I'm a Frontend Developer RSSchool Student Frontend Developer RSSchool Student

Hi! I am Marina Akhrieva, a first-year student of the BSUIR. My goal is to become a strong Frontend developer. Now I am actively diving into the world of HTML, CSS and JavaScript, learning how to create not just websites, but convenient and attractive digital experiences. This portfolio contains my first steps and projects. Welcome to the beginning of my journey in IT!

My Contacts

My email: marina.akhrieva.000@gmail.com

My phone number: +375-(29)-534-95-14

my photo

My Skills

Coding Skills

HTML 90%

CSS 80%

JavaScript 50%

C++70%

Java55%

Professional Skills

Frontend Developer 60%

Photoshop 90%

Figma70%

Education

2021-2023

Udemy

I completed a Web developer and Java from simple to complex courses on the Udemy platform.

2024

University

I'm a first-year student.Since 2024 to 2028, I am studying at the BSUIR at the Faculty of Engineering and Economics

2025

RSSchool

Front-end Development Course.I take a free intensive course in modern web development (JavaScript)

Languages I know

My Code Example

function toCamelCase(str) {
if (!str) return str;
return str
.split(/[-_]/)
.map((word, index) => {
if (index === 0) {

return word;
}
return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase();
})
.join('');
}

Contact Me