Responsive landing page with flexbox and media queries
Design comparison
Community feedback
- @Alex-Archer-IPosted 5 months ago
Hi!
Congrats with new challenge. That's a cool one =)
Here is a couple of unasked advices =)
You used landmark tags, like
header
andfooter
, that's cool. But theheader
shouldn't containh1
tag. You see, when theheader
and thefooter
are on top level, they are special parts of the site which remains on every page. So, in the most casesheader
includes logo andnav
.For the phone number and email in the footer you can use special links:
<a href="mailto:[email protected]">[email protected]</a> <a href="tel:+1-543-123-4567">+1-543-123-4567</a>
The
mailto
link will open the mail agent on click, and thetel
one will open the phone app if user tap it on their phone. So it's kinda good user experience to use those links and good for accessibility. Also you can wrap them intoaddress
tag.Hope that helps =) Keep doing =)
Marked as helpful1@porumbachanovPosted 5 months ago@Alex-Archer-I Makes sense, thanks for the advice! I'll make the changes and keep it in mind going forward.
1
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