Contacts contacts

Education education

Bachelor of Media & Communication

EHU

Vilnius, Lithuania

Skills skills

  • Git
  • HTML
  • CSS
  • JavaScript
  • VS Code

Languages languages

  • Belarussian
  • Russian
  • English
  • Lithuanian
  • Italian

About me about-me

I am a junior front-end developer currently transitioning into IT. I have solid knowledge of HTML and CSS, and I use Git and VS Code in my workflow. As part of my learning journey, I have created several responsive websites using semantic HTML and modern CSS techniques (Flexbox, Grid, media queries).

I am passionate about web development, eager to grow, and currently focusing on improving my JavaScript skills to build more dynamic and interactive applications. I love bringing ideas to life through clean code and thoughtful design. 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.

Experience experience

Shelter (2-page Website)

Educational Project

July 2024 – August 2024

Created a simple and responsive website for a fictional animal shelter to help users browse adoptable pets and learn about adoption rules.

Technologies: HTML5, CSS3 (Flexbox), Responsive Design, Git

  • Developed a fully responsive landing page for a fictional animal shelter using semantic HTML and modern CSS.
  • Created structured layout with reusable components (header, cards, modals, footer) using Flexbox and Grid.
  • Designed clean and user-friendly UI with consistent spacing, color scheme, and typography.
  • Implemented interactive elements such as navigation menu and hover animations.
  • Ensured mobile-friendliness with adaptive design across various screen sizes.
  • Followed pixel-perfect layout requirements based on provided design.
  • Structured content to improve readability and accessibility.
  • Used Git for version control and hosted the project on GitHub Pages.
Christmas Shop (2-page website)

Educational Project

November 2024 – December 2024

Created a simple and responsive website for a fictional christmas shop that helps users learn more about gifts.

Technologies: HTML5, CSS3 (including Flexbox), Git

  • Designed and implemented a responsive two-page website layout using semantic HTML and modern CSS techniques.
  • Created a festive visual style and consistent UI using custom fonts, colors, and themed decorative elements.
  • Developed interactive hover effects and smooth transitions to enhance user experience.
  • Built flexible page structure using CSS Flexbox and Grid to ensure proper alignment and spacing.
  • Ensured cross-browser compatibility and clean code structure.
  • Organized page navigation and internal links for smooth user flow between pages.
  • Implemented basic accessibility practices (contrast, readable fonts, structured HTML).
  • Deployed the project to GitHub Pages.
Personal CV Website

Educational Project

July 2025

Created a simple CV.

Technologies: HTML5, CSS3 (including Flexbox), Git

  • Designed and built a personal CV website using semantic HTML and responsive CSS.
  • Structured content into clear sections (About Me, Skills, Education, Contacts, Languages, Experience, Code Example) for easy readability.
  • Used Flexbox to clean visual hierarchy.
  • Styled the website with consistent fonts, colors, and spacing for professional appearance.
  • Implemented smooth hover effects and transitions to enhance user experience.
  • Practiced clean code structure, indentation, and accessibility basics.
  • Deployed the project to GitHub Pages for public access.

Code example

                            
                                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;
                                    }