Design comparison
SolutionDesign
Solution retrospective
Hi everyone! I have just finished this challenge! Any feedback on how can I improve my coding skills is very much welcomed! happy coding :)
Community feedback
- @MelvinAguilarPosted almost 2 years ago
Hello there ๐. Good job on completing the challenge !
I have some suggestions about your code that might interest you.
HTML ๐ท๏ธ:
<span>
is an inline element that is typically used to apply styles to a small piece of text within a larger block of text. It's best to use the appropriate HTML element for the type of content you're working with. Use <p> for paragraphs of text and use <span> for applying styles
- You should use the
<a>
tag instead of the<button>
tag because theLearn More
button is a link to another page. Use buttons to perform actions like submitting a form or closing a modal and use links to navigate to another page. You can read more about this here ๐.
- Not all images should have alt text. Car icons are for decoration purposes only, so they can be hidden from screen-readers by leaving its alt attribute empty. You can read more about this here ๐.
I hope you find it useful! ๐ Above all, the solution you submitted is great!
Happy coding!
Marked as helpful0
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