Design comparison
Community feedback
- @MelvinAguilarPosted almost 2 years ago
Hello again π. Good job on completing the challenge !
I have some suggestions about your code that might interest you.
HTML π:
-
It is generally not recommended to use multiple <h1> tags on a single web page because the <h1> tag is used to mark the most important heading on a web page and it is considered the top-level heading in the document outline. It should be used only once on the page, typically for the title or main heading of the page.
You can read more about this here π.
-
Small Tip: To improve the semantics of your code you should use the
<figure>
and<blockquote>
tags to wrap the testimonials, with this, you will be able to encapsulate the author and the citation of the testimonial.Example:
<figure> <blockquote> <p>"Example of a testimonial"</p> </blockquote> <figcaption> <p>Example of the author</p> </figcaption> </figure>
You can read more about the
<figure>
and<blockquote>
tags with this two links:
I hope you find it useful! π
Happy coding!
Marked as helpful1@sulemaan7070Posted almost 2 years ago@MelvinAguilar ... Iam learning a lot of things.. by looking at you comments .. really enlightening βοΈ
1@MelvinAguilarPosted almost 2 years ago@sulemaan7070 I'm glad to hear that my comments have been helpful or enlightening for you. Learning is a lifelong process, and I'm glad that I can be a part of it.
1 -
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