Design comparison
Solution retrospective
Hi guys, I am new to this community and I would like to know your opinion about this landing page. I joined this community because I really want to improve my HTML and CSS, so I really appreciate your advice and opinions.
Community feedback
- @catherineisonlinePosted almost 2 years ago
Nice! ๐๐ป
I would also add some transitions for active states (when colors change on hover). It creates more interactivity and makes the project looks cooler. Active states can be done on buttons, links, titles which act like links or anything else, you choose.
You can read more about it here, in case you havenโt done much of it:โจhttps://www.w3schools.com/css/css3_transitions.asp
IF THIS WAS HELPFUL PLEASE MARK IT AS HELPFUL ๐คฉ
Marked as helpful0 - @amalkarimPosted almost 2 years ago
Hi Daniel,
When I turn on my developer tools in chrome, which is sitting at the bottom of the browser, the
<div class="container">
is overlapping with the element after it:<section class="main-content">
. I think it's because you setheight: 100vh;
for the.main-header .container
. It's better to remove it, or change it tomin-height: 100vh;
Also, please look at the
<div class="main-header-mockup"></div>
. In my opinion, it's better to place the image inside it using<img>
tag rather than as abackground-image
. First, it's an important image that has meaning, not just a decorative image. Background image is best suited for an image that is just a decorative one. Please refer to this article about image accessibility. And second, in mobile view, the image is vanished. It can't be seen under theGet Started For Free
button. By using<img>
tag, that could be prevented from happening.That's it from me. Hope this helps. Happy coding!
Marked as helpful0 - @t0ntinPosted almost 2 years ago
Looks good. Add the hover states to the buttons and the footer links.
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