HTML: / Home / SpanTag

The Span Element

The Span element defines a section in an HTML document. It begins with the <span> tag and ends with the </span> tag.

  <p>
    This text <span style="color:blue">contains</span> a span element.
  </p>

This text contains a span element.

The Span element is an inline element. For more information, See the Display Types page.

The Span element usually contains only text.

More about Files

<- Division
20SpanTag