Table of Contents

About

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

Example

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

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