Assessment for "Typesetting a community school homepage"

Hello, I would like to have my work assessed. link to the actual task --> https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Typesetting_a_homepage#assessment_or_further_help . My codepen --> https://codepen.io/ashwinsoni86/pen/dyJeOOQ .

thanks.

Congratulations, @ashwinsoni86!

I see two small things that could be improved:

  • The headings are a bit too big in my opinion. Maybe it’s just because on CodePen everything is in “Arial” and not in “alatsiregular”. With “Arial” something like 2em for h1 and 1.5em for h2 would be fine.
  • You could add following code to make the links in the nav as big as the list elements. This way it would be easier to click them and the background color would fill the list element.
    nav ul li a {
      display: inline-block;
      width: 100%;
    }
    

I hope that helps,

Have a nice weekend,
Michael

thank you @mikoMK for the feedback, I will definitely work on them.

1 Like