Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 22, 2021 01:38 am GMT

Frontend Challenge 6, Social Proof Component

Let me describe my coding journey to build a Social Proof component fromFrontend Mentors.Frontend Mentorsis a online platform that provide front-end challenges that include professional web designs.

The goal is to build this:
social proof desktop preview

Step 1: Initial Layout Responsive Design

The first coding hurdle was setting up the HTML & CSS to create the initial layout and then testing if it flowed decently between mobile and desktop as intended.

My first decision was deciding between CSS Grid, Flexbox, or a combination of the two. Looking at the given design, the different regions of content had a natural flow from mobile to desktop. So, I only need Flexbox. If the layout had massive changes or swap places, then CSS Grid would have been a better tool

My tip to anyone is use background colors to visually show specific layout areas.

GIF of responsive layout
GIF of initial layout responsive design testing

Screen-shot of the Layout
Screen-shot of the code, layout only

Step 2: Focus on Content Placement

The next step was to slowly add in all content with relevant HTML tags, no styling. The idea is to purely focus on content placement and using the right HTML tags.

Screen shot of app in development, no styling
Screen shot of content, no style

Step 3: Add styles and background images

Now for the long grind of adding styles to each HTML tag, section by section, while checking every few changes for layout responsiveness.

The one thing I didn't know how to do was to set multiple background images at the same time.

Screenshot of CSS code for setting multiple background images
CSS Code for background images

Final Outcome

Final desktop screen-shot

You can play with the solution here

What I learned

  • I learned how to add multiple background images at one time.
  • I was able to complete this project in a few hours by following a tried and true process:
  1. Design a responsive layout
  2. Build a foundation with HTML
  3. Add content
  4. Style with CSS, section by section
  5. End with functionality (JavaScript & CSS animation/transitions)

This "Ground up" methodology kept me focused, minimized bugs, and follow the mantra "Slow is Fast".

Resources Used

  1. Tips on Background Images by CSS Tricks

Thank you for reading!

Thank you for reading my blog. Feel free to connect with me on Twitter or LinkedIn.

You can find the completed code here


Original Link: https://dev.to/jcsmileyjr/frontend-challenge-6-social-proof-component-25e

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To