mustafaalawad / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Sections #2

Open martoio opened 6 years ago

martoio commented 6 years ago

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>

https://github.com/mustafaalawad/prj-rev-bwfs-dasmoto/blob/8c66bf5b5cc78dcea9a0f5d7867f29af4a74538f/Projects/Dasmoto's_Arts_%26Crafts/index.html#L15-L22

mustafaalawad commented 6 years ago

Nice and wonderful new information.

Many thanks Martoio