Design comparison
Solution retrospective
This HTML & CSS-only challenge is a perfect project for beginners getting up to speed with HTML and CSS fundamentals, like HTML structure and the box model.
Community feedback
- @danielmrz-devPosted 10 months ago
Hello Ulises!
Your solution looks great!
I have a couple of suggestions for improvement:
- First: In order to make your HTML don't skip heading levels when using tags
<h1>
to<h6>
. Unlike what most people think, it's not just about the size and weight of the text.
š The
<h1>
to<h6>
tags are used to define HTML headings.š
<h1>
defines the most important heading.š
<h6>
defines the least important heading.š Only use one
<h1>
per page - this should represent the main heading/title for the whole page.- Second: Use
main
to wrap the main content instead ofmain
andsection
.
š The tag
section
would make more sense if the card was part of a bigger website (in certainly would in real world), but here it is all we have on the screen.All these tag changes may have little or no visual impact but they make your HTML code more semantic and improve SEO optimization as well as the accessibility of your project.
I hope it helps!
Other than that, great job!
Marked as helpful0 - First: In order to make your HTML don't skip heading levels when using tags
- @KorneyChervonenkoPosted 10 months ago
Hello, friend. illustrations in design requirements states that when cursor is above text "HTML & CSS foundations" it is necessary:
- Selected text changes color from black to yellow
- Cursor changes shape to pointing hand
- Shadow of main object grows about twice
I've looked into many solutions and haven't found any with 3 provided. Maybe I'm wrong?
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