Design comparison
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
- @VCaramesPosted about 2 years ago
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:
- 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:
If you have any questions or need further clarification, feel free to reach out to me.
Happy Coding! 🍂🦃
Marked as helpful0@DavidMBKPosted about 2 years ago@vcarames Thanks so much for all this information! Happy Coding you too!
0
Please log in to post a comment
Log in with GitHubJoin 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