Design comparison
SolutionDesign
Community feedback
- @mtenkorangPosted about 2 years ago
Congratulations and here are a few ways to improve your code. The third accessibility warning has to do with semantic html tags. This is a link to an article on w3schools.
- Instead of using
<div class="container">
, opt for<main class="container">
- Instead of
<div class="card-text"> Discover the benefits of data analytics ... </div>
opt for
<div class="card-text"> <p> Discover the benefits of data analytics ... </p> </div>
- Instead of using
<div class='attribution'>
, opt for<footer class="attribution">
I hope this helps and happy coding .🙂👨💻
0@chandan9369Posted about 2 years ago@mtenkorang Hey thanks for the feedback, I know these tags but I have made this project just for fun which is why I have not used these rags but thanks.
0 - Instead of using
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