Design comparison
SolutionDesign
Community feedback
- @mendezpviPosted 8 days ago
Hi @aeleneh, nice job.
I have some observations:
- You can replace some div's with semantic tags:
- The heading class with a
<header>
tag. - The card-grid class with a
<section>
tag. - Each card can be an
<article>
.
- The heading class with a
- As for the title, I consider it to be one line: Reliable, efficient delivery Powered by Technology
- You can separate it by wrapping the Powered by Technology part in a
<span>
and styling it.
- You can separate it by wrapping the Powered by Technology part in a
- Avoid styling directly in the HTML.
- The width and height of the image can be managed from the CSS.
- Give the
<main>
a minimum and maximum width in pixels:- When you test it in the inspector, it either gets too narrow or it expands too much.
Here is a link to my solution, which is based on a mobile-first approach. You can take a look at it and maybe you will find some useful information.
0 - You can replace some div's with semantic tags:
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