span要素

span要素は、インライン要素で、特定のテキスト部分をグループ化するために使用します。

span要素の説明図
span要素
記法

<span>テキストなど</span>

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>spanタグについて</title>
    <link rel="stylesheet" href="./main.css" />
  </head>
  <body>
    <p id="introduction">
      この文章の中の <span class="highlight">特定の部分</span>を強調しています。
    </p>
  </body>
</html>
.highlight {
  color: red;
  font-weight: bold;
}
出力結果

この文章の中の 特定の部分を強調しています。