Design comparison
SolutionDesign
Community feedback
- @Alex-Archer-IPosted 3 months ago
Hi!
Good job =)
It's a couple of semantic thing you can improve here.
At first - use a semantic tag in general. Like the
main
tag for the main content of the page (in this case it's the whole content), Theh1
andp
tags for texts.And second - there is a list of links here. So you should use
a
tag for the links themselves and put them into theul
andli
tags. Like this:<ul> <li><a href="#">Link here!</a></li> <li><a href="#">Link here!</a></li> <li><a href="#">Link here!</a></li> </ul>
Hope that helps. Neat work, keep doing =)
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