Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

responsive web page with css flex

@Hamid210545

Desktop design screenshot for the Stats preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


This is awesome project .............. there is no difficultes in achieveing it

Community feedback

@VCarames

Posted

Hey there! 👋 Here are some suggestions to help improve your code:

  • The only heading in this component is the “Get insights that help your business grow” everything else will be wrapped in a Paragraph Element.

  • The statistics component is a list of statistics, so it should be built using an Unordered List along with a List Items Element.

  • This challenges requires the use of two images 🎑 for different breakpoints. The Picture Element will facilitate this.

Here is an example of how it works: EXAMPLE

Syntax:

  <picture>
    <source media="(min-width: )" srcset="">
    <img src="" alt="">
  </picture>

More Info:

https://www.w3schools.com/html/html_images_picture.asp

https://web.dev/learn/design/picture-element/

  • To get the image to look like the FEM example, you are going to want to use the Mix-Blend-Mode along with the Multiply Value and include a Opacity with the value of 0.8.

Code:

img {
  opacity: 0.8;
  mix-blend-mode: multiply;
 
}

If you have any questions or need further clarification, let me know.

Happy Coding! 👻🎃

Marked as helpful

0
Eugenia 950

@JaneMoroz

Posted

Hi, Hamid! You solution is great💪

I have noticed a few issues though:

  • You need to wrap <div class="container"> in a <main> tag. You can read more here HTML <main> Tag
  • Also to fix image aspect ratio you can add object-fit property to the img tag or to .desktop-pic and .mobile-pic classes, for example
img {
   object-fit: cover;
}
img {
   filter: filter: invert(28%) sepia(36%) saturate(1540%) hue-rotate(227deg) brightness(90%) contrast(95%);
}

Keep it up! And good luck 🍀

Marked as helpful

0

@Hamid210545

Posted

@JaneMoroz Thanks!!!!

1

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord