So far, we have mostly seen "block" elements. They appear on the next line, like paragraphs.

There are also "inline" elements. They appear on the same line that they are written on.

image.png

Block & Inline Elements

Element: span

span is used to apply a specific style inline

.highlight {
  color: teal;
}
<p>Paragraph with <span class="highlight">teal</span> text.</p>

Paragraph with teal text.