Good job on separating the HTML into sections! One thing you might want to consider is changing the <div> into a <section> to improve the semantics of your code.
If you aren't familiar with semantic HTML: http://www.hongkiat.com/blog/html-5-semantics/
Example:
<!-- First section -->
<section> <!-- or <div>, but <section> is more semantic -->
<h2 class="brushes">Brushes</h2>
<img src="#" alt="#" />
<h3>Text</h3>
<p>
Lorem <span class="price">ipsum</span>
</p>
</section>
Good job on separating the HTML into sections! One thing you might want to consider is changing the
<div>
into a<section>
to improve the semantics of your code. If you aren't familiar with semantic HTML: http://www.hongkiat.com/blog/html-5-semantics/ Example:https://github.com/mustafaalawad/prj-rev-bwfs-dasmoto/blob/8c66bf5b5cc78dcea9a0f5d7867f29af4a74538f/Projects/Dasmoto's_Arts_%26Crafts/index.html#L15-L22