louie9479 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

`div` #2

Open ghost opened 6 years ago

ghost commented 6 years ago

https://github.com/louie9479/prj-rev-bwfs-dasmoto/blob/master/Unit2_Dasmoto's_Arts_%26_Crafts/index.html#L11-L16

Nice job using div tags to divide your page into logical sections like the three equivalent product sections and the header section. 👍

Consider giving the same class name to each div tag, since each "product" section is mostly styled the same way and can be styled as a group, and giving a different ID to each h2 tag, since each of these headings needs to be selected and styled individually.

Here's an example:

<div class="product">
  <h2 id="brushes">Brushes</h2>
  <img src="Images/Hacksaw.jpeg" alt="Hacksaw">
  <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. <strong>Starting at $3.00 / brush.</strong></p>
</div>