Assessment wanted for Typesetting a community school homepage(Name:Jomaa)

Project wanted by MDN
I want some advice for the things you think I’ve done wrong and evaluate this project
Link on CodeBen

elslamo alikom @Jomaa

you doing great well done just some notice here:

  1. you should have 2 font by you define only one
  2. it bad way to use display: table; so use display: inline-block; or any other way not sure if you get to the layout lessons or not
  3. i notice you added border to nav element despite it not required but instead of doing that
 border: 1px solid black;
  border-top: none;
  border-right: none;
  border-left: none;

you can do
border-bottom: 1px solid black;

hope i did not miss anything else and have a nice day :slight_smile:

2 Likes