
Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
I use something I learned from first challenge.
What challenges did you encounter, and how did you overcome them?something related to width.
What specific areas of your project would you like help with?I would like to have feedback to improve.
Community feedback
- @BlackpachamamePosted about 1 month ago
Hey your solution is amazing! 🤩
📌 Some accessibility and semantics recommendations for your HTML
- To improve the semantics of your HTML, you can change your
<div class="blog-card">
to a<article class="blog-card">
- Your
<p class="name">HTML & CSS foundations</p>
could be<h1 class="name">HTML & CSS foundations</h1>
since it is the main title of your article - Your
<h2 class="blog-title">Learning</h2>
Is it really a header or is it just a tag? - For your
<p>Published 21 Dec 2023</p>
you can use thetime
tag:<p>Published <time datetime="2023-12-21">21 Dec 2023</time></p>
. More info
Marked as helpful1 - To improve the semantics of your HTML, you can change your
- @OumarouSandaSouleyPosted about 1 month ago
The only issue i found is font weight managment
Marked as helpful1
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