Table of Contents

About

structure elements are different from Inline elements in that inline elements are part of the content of a tag.

Example

The b tag below is an in-line element whereas the p is a structure element.

<p>
  The text is <b>bold</b>
</p>