CandiceJune / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Using a style guide to help format and indent HTML & CSS #3

Open zannain opened 6 years ago

zannain commented 6 years ago

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>
CandiceJune commented 6 years ago

I've tidied this up now, but let me know if I can improve the layout! Thanks so much!