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

meet-landing-page-sass

P

@wolf2lyon

Desktop design screenshot for the Meet landing page coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

P
Tuna Erten 220

@tunaerten

Posted

Hello there 👏 You've done a pretty good job.

Your project works responsively and aligns well with the design. I have a few suggestions:

  • You can use the <picture> tag with min-width to display different images for various screen sizes.
         <picture>
          <source
            media="(min-width: (your value))"
            srcset="./assets/desktop/image-hero-left.png"
          />
          <img
            src="./assets/tablet/image-hero.png"
            alt=
          />
        </picture>

        <picture>
          <source
            media="(min-width: (your value))"
            srcset="./assets/desktop/image-hero-right.png"
          />
          <img
            src="./assets/tablet/image-hero.png"
            alt=
          />
        </picture>
  • Also, don't forget to use cursor: pointer for all buttons.

I hope my suggestions have been helpful. Happy coding!

0

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