Design comparison
SolutionDesign
Community feedback
- @tburettePosted 9 months ago
Nice solution @IamVictheCG !
Here are a few remarks.
Your html could be more semantic by using
<main>
,<section>
, ...I find your word spacing on the titles a bit too big but that is a purely stylistic choice.
I see that you use separate css files for desktop and mobile. Interesting. Did you know that you can import css files conditionally?
css:
@import url(a.css) (min-width: 800px);
html:
<link rel="stylesheet" href="a.css" media="(min-width: 800px)">
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