Skip to content

adityaa-more/landing-page

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - Sunnyside agency landing page solution

This is a solution to the Sunnyside agency landing page 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 site 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
  • CSS Grid
  • Mobile-first workflow

What I learned

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

 <div class="main">
                <span class="text">WE ARE CREATIVES</span>
                <a href="#content"><img src="./assets/icon-arrow-down.svg" class="arrow" alt="arrow button"></a>
 </div>
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

Useful resources

  • CSS-Tricks FlexBox - This helped in finally understaning flexbox. I really liked this pattern and will use it going forward.
  • MDN web docs - This is an amazing article which helped me understand all concepts. I'd recommend it to anyone still learning hltml-css.

Author

Acknowledgments

Thanks to CleverProgrammer for helping a lot during this project.