Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Responsive Landing Page built w/Vanilla CSS & JavaScript

Jary Cruz 800

@JaryCruz

Desktop design screenshot for the Bookmark landing page coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
3intermediate
View challenge

Design comparison


SolutionDesign

Solution retrospective


I very much appreciate any feedback!

Community feedback

@Ikuewumi

Posted

Hi Jary👋. Really cool solution. Here are my suggestions on improving this:

This page generates an error about: Links must have discernible text. In this case the link's content is an icon, and you could fix this issue by adding a title attribute to the <i> element like -

<a href="#">
  <i title="twitter" class="fa-brands fa-twitter"></i>
</a>

Also, I saw you didn't add the decorative shape on the hero section. The shape is just a rectangle / square with a curved side. You could add it like so:

hero {
   position: relative
}

hero::before {
   content: "";
   position: absolute;
   inset: auto 0 0 auto; //shorthand for the top, right, bottom, left properties
   width: 300px;//arbitrary number
   height: 300px; //arbitrary number
   background: blue;
   border-bottom-left-radius: 4vmax;//arbitrary number
}

Anyways, I hope this helps. Again, this solution is really cool. Don't hesitate to ask more questions and keep coding👍,

Ayobami

Marked as helpful

1

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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