/Huddle-Landing-Page-with-Single-Introductory

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

Primary LanguageCSS

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

Design preview for the Huddle landing page with single introductory section

Screenshot

SCREENSHOT

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Mobile-first workflow

What I learned

I learned responsive design using CSS Grid in this challenge.

To see how you can add code snippets, see below:

.container {
  display: grid;
  grid-template-areas:
    "header main"
    "header main";
  justify-items: center;
  align-items: center;
}

header {
  grid-area: header;
}

main {
  grid-area: main;
}

Author