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

Not Responsive page [Social Proof Section Master]

David 60

@DavidMBK

Desktop design screenshot for the Social proof section coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


Hi guys👋, I'm new in this field, at the moment I only have some html and css notions and I would really appreciate if you would point out the mistakes I make and how to improve 😊

Main problem; making rensposive website, i don't know how to make it, so could you pls link me some guide? Thank you so much in advance😁 and enjoy the rest of the day☀️

Community feedback

@VCarames

Posted

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

Regarding your question,

Here is a link to Google Developer’s site that will teach you how make it 100% responsive:

https://web.dev/learn/design/

  • To properly center your content to your page, you will want to add the following to your Body Element (this method uses CSS Grid):
body {
    min-height: 100vh;
    display: grid;
    place-content: center;
}
  • To not only improve your HTML’s code but to identify the main content of you page, you will want to wrap your entire component inside the Main Element.

  • The profile images Alt Tags need to be improved. It should state the following; “Headshot of -person’s full name-“

  • To improve the semantics of your component, you want to wrap each individual testimonial component in a Figure Element, the individuals information should be wrapped in a Figcaption Element and lastly, the testimonial itself should be wrapped in a Blockquote Element.

Code:

<figure>
   <figcaption></figcaption>
   <blockquote></blockquote>
</figure>

More Info:

ARTICLE

If you have any questions or need further clarification, feel free to reach out to me.

Happy Coding! 🍂🦃

Marked as helpful

0

David 60

@DavidMBK

Posted

@vcarames Thanks so much for all this information! Happy Coding you too!

0
David 60

@DavidMBK

Posted

I forgot to write alt="" to all images

;-;

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