Design comparison
Solution retrospective
Give reviews, feedback, mistakes point outs and advice, I'll appreciate. I'm off to learning Js now, wish me luck.
And also my project doesn't have the menu bar cause I have no experience with js but I will soon.
Community feedback
- @chukwudobe-MicahPosted almost 2 years ago
Hey, thank you for taking time to check and review my code. I just learnt this picture tag, I'll start using it instead of display: none; and display: block; since it's more semantic! Also, after finishing my code, I noticed that the "new" was an aside, I'll also change that too. I don't know JavaScript yet, so that's why I didn't add a navigation, I'm learning Js now so I'll probably add one in the future. Thanks again for the reviews, I learnt some things here and I'll try them.
0 - @VCaramesPosted almost 2 years ago
Hey there! 👋 Here are some suggestions to help improve your code:
- You challenge is not complete*. It needs to have a mobile navigation to be considered complete.
- The Alt Tag description in the logo needs to be improved upon. So the description should state the company name.
- Your navigation links in the header need to be wrapped inside a
nav
element and each individual link needs to wrapped inside aanchor tag
.
- The "nav button" needs to be inside the
nav
element before the nav menu.
-The "hero image" uses two images 🎑 at different breakpoints. The
picture
element will facilitate this.Syntax:
<picture> <source media="(min-width: )" srcset=""> <img src="" alt=""> </picture>
More Info:📚
https://www.w3schools.com/html/html_images_picture.asp
https://web.dev/learn/design/picture-element/
- The "New" component should be an
aside
element.
- Everything that has a
:hover
effect should be created using aanchor tag
.
If you have any questions or need further clarification, feel free to reach out to me.
Happy Coding! 🍂🦃
0
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