Recipe Page Built with HTML & CSS (Mobile-First Approach)

Solution retrospective
- Did I use best practices?
- How would you make the CSS more efficient?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @ebenkanin
Hi Kelly,
Great job completing this challenge. Congratulations. I went through your code and realized for your table, you put the headings in a normal <tr> and <td> tags. In future, do consider wrapping your table headings up in a <thead> tag to adhere more to html semantics since they are column names. something like this should work out nicely.
<thead> <tr> <th>Calories</th> <th>277kcal</th> </tr> </thead>Overall, well done and keep going!
Join 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