Design comparison
Community feedback
- @frost3dWavePosted 2 days ago
- do not include your css into the html file, it is good practice to have them both separated & it keeps your html clean.
- use correct tags for the links section, they aren't list elements nor are they mere buttons.
- use descriptive alt texts for all the images.
- again the
h
tags should be in hierarchical order there shouldn't be such as large difference ash1
& the next ash5
as you have now.
Marked as helpful0 - @jacky-uiPosted 1 day ago
Hey! Looks good to me. With regards to responsiveness, although there's not much change in design from desktop to mobile, I noticed you didn't use media queries. This is very useful for creating websites that looks good on all screen types.
As the other person mentioned, its good practice to separate html and css. This is known as separation of concern. Why? It keeps our code easier to manage and maintain.
I liked that you used li tags for the links as this is good for accessibility. It helps assistive technologies and users know that the links are related. One suggestion: I would probably change the buttons used for the links to an anchor <a> instead. When linking to external sites or other pages, the <a> tag is semantically more appropriate and will improve accessibility. Anchors also have the href attribute, which we can define the url.
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