DawnM

Building a Front-End Online Presence

A Technical Exploration

Introduction

As part of my journey to becoming a front-end web developer, I created this mini portfolio webpage to showcase my stories and skills. This article will take you through the technical aspects of the code used in the webpage, highlighting key concepts I'd learned so far.

Screenshot of the online presence webpage

HTML Structure

The backbone of this webpage is its HTML structure, which is semantic and well-organized. Here's a breakdown of the key sections:

CSS Styling

The webpage's layout and style were created using modern CSS techniques:

JavaScript for Interaction

Though the webpage initially had no JavaScript, I added a small function to toggle the visibility of the mobile navigation menu:

    function toggleMenu() {
    const menu = document.getElementById("menu");
    menu.classList.toggle("active");
    menu.setAttribute("aria-expanded", menu.classList.contains("active"));
    }
            

This script allows users to open and close the navigation menu by clicking the hamburger icon, and updates the aria-expanded attribute for accessibility.

Lessons Learned

Throughout this project, I learned several important concepts and practices for building modern websites:

Conclusion

This webpage is a portfolio of the stories and experiences that have shaped me, not just a showcase of technical work. By using a combination of HTML, CSS, and a little JavaScript, I've created a webpage that is functional, accessible, and mobile-friendly. I'm excited to continue building on my front-end development skills and creating more engaging, content-driven projects in the future!