
Design comparison
Community feedback
- @ilham-boukPosted about 2 months ago
Hello, Well done on the challenge, I just notice that the color of hover is strong. Nice coding!
0 - P@Theosaurus-RexPosted about 2 months ago
Hi @Student-Adil,
In your solution code, you alternate
h1
andh5
tags, but this is not semantically correct.When using heading tags in a HTML document:
- There should always only be a single
h1
tag, which captures the main topic of the page. For this project, I would suggest that the text "Reliable, efficient delivery Powered by Technology" should be inside ah1
tag - Successive heading tags then need to be in descending order, i.e. you can have a
h2
followed by ah3
, and then anotherh2
. - You also cannot skip number levels, but you have jumped straight to using
h5
tags.
I highly recommend brushing up on these semantics by reading the MDN docs on this topic
Additionally, I would leave the alt text for these images blank, as they are purely decorative in nature.
0 - There should always only be a single
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