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>
https://github.com/stjurate/prj-rev-bwfs-dasmoto/blob/master/Dasmoto-Arts-Crafts/index.html#L13-L18
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 eachh2
tag, since each of these headings needs to be selected and styled individually.Here's an example: