sonyaagirman / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Inline elements are inline with block level elements #2

Open zannain opened 6 years ago

zannain commented 6 years ago

Inline elements like strong and span should be put between block level elements such as p, h1 tags. The purpose of inline elements is to help select portion of block level elements that will receive CSS styles that are different from the parent block element.

Instead of:

<strong><h3>Art Frames (assorted)</strong></h3><p>

Put the inline element, <strong> inside the <p>

<h3><strong>Art Frames (assorted)</strong></h3>

https://github.com/sonyaagirman/prj-rev-bwfs-dasmoto/blob/master/Dasmotosart%26craft/index.html#L23

sonyaagirman commented 6 years ago

done