whitleypixel / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Consider using divs to organize content. #1

Open farishkash opened 7 years ago

farishkash commented 7 years ago

So divs are the main containers for any website. There a good way to organize your content.

I will explain more in the summary why I point this out

so example I would take this section from your html and wrap it in a div.

<div class="someclassname>
<h2 class="brushes">Brushes</h2>
      <img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/hacksaw.jpeg"/>
        <h3>Hacksaw Brushes</h3>
          <p> Made of the highest quality oak, Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Available in different sizes. <a class="special">Starting at $3.00 / brush.</a></p>
</div>
whitleypixel commented 7 years ago

I knew I needed to use a div but couldn't figure out how. This makes perfect sense. Thanks so much for the example.