Profile Image

Robert Yawa

Web Designer &Programmer

How I Designed and Built a Responsive Portfolio Website

Creating a responsive portfolio website involves planning, design, and clean code.
I started by sketching wireframes, then moved those into Figma for high-fidelity designs.

Example of My Layout Structure (HTML):

<header>
  <nav class="navbar"></nav>
</header>

<section class="hero"></section>
<section class="projects"></section>
<section class="about"></section>
<footer></footer>
@media (max-width: 768px) {
  .projects {
    grid-template-columns: 1fr;
  }
}

This example shows how I adjusted the layout for smaller screens. Each section was optimized for speed, accessibility, and mobile-first design.

Share this content