aboseman1 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

HTML indentation #1

Open Rodrigap opened 6 years ago

Rodrigap commented 6 years ago

https://github.com/aboseman1/prj-rev-bwfs-dasmoto/blob/25fe3b758aae6665f17e6ce42c327fb1c5de957f/Arts%20and%20Craft/index.html#L8-L15

I'd recommend that you clean up your HTML indentation! HTML whitespace is super important, it helps the reader understand which elements belongs within other elements. Once you graduate to more complex files, it becomes super important! Remember to add 2 extra spaces of indentation when an element is a child of the element before it. So for example, this is how this snippet should look:

  <body>
    <div class="heading">
      <h1>Dasmotos Arts & Craft</h1>
    </div>
    <div class="brushes">
      <h2>Brushes</h2>
    </div>
aboseman1 commented 6 years ago

Thanks for this feedback. This is definitely something that I know I can be paying more attention to and will keep this in mind in my next project.