mhallas / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

HTML formatting. #2

Open farishkash opened 6 years ago

farishkash commented 6 years ago

You have some odd indentations along your html

    <nav>
    <a href="#brush">Brushes</a>
    <a href="#frame">Frames</a>
    <a href="#paints">Paint</a>
  </nav>

Everything should be indented with the opening and closing tags lining up. You have the closing nav farther in than the opening nav tag. Your code reformatted below.

 <nav>
    <a href="#brush">Brushes</a>
    <a href="#frame">Frames</a>
    <a href="#paints">Paint</a>
 </nav>