I recommend taking a look at Googles HTML/CSS Style Guide for best practices when it comes to proper formatting and indentation when developing web pages. This helps to standardize practices and ensure your formatting is on par with others that are developing alongside you.
<!-- instead of -->
<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. <span class="price">Starting at $3.00 / brush.</span>
</p>
<!-- try -->
<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. <span class="price">Starting at $3.00 / brush.</span>
</p>
I recommend taking a look at Googles HTML/CSS Style Guide for best practices when it comes to proper formatting and indentation when developing web pages. This helps to standardize practices and ensure your formatting is on par with others that are developing alongside you.