Frontend Mentor - Huddle landing page with single introductory section solution

This is a solution to the Huddle landing page with single introductory section challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

Users should be able to:

  • View the optimal layout for the page depending on their device's screen size
  • See hover states for all interactive elements on the page

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • Fonts from fontawesome.com
  • Visual Studio Code
  • Chrome Developer Tools

What I learned

I was able to make use of media queries  for my responsive design without referring to any website or document and was also able to use svg as backgrounds. See the code snippet below:
<header>
    <img src="./images/logo.svg" alt="Huddle Logo">
</header>
header img
{
    width: 200px;
    padding: 20px;
}

Continued development

I am going to keep on taking on challenges that require responsive design so as to master media queries

Author