Three New Tags

<span> The Span Tag </span>

The <span> tag is often used for inline styling, applying CSS to specific portions of text without creating a new line.

The code that produced the output above looks like this:

The <span> tag is often used for <span style="color: blue; font-weight: bold;">inline styling, applying CSS to specific portions of text</span> without creating a new line.

I found this tag at W3Schools Span Tag

<section> The Section Tag </section>

The <section> tag is used to organize content into

logical, thematic sections.

The code that produced the output above looks like this:

<section>

The <section> tag is used to organize content into
</section>
logical, thematic sections.

I found this tag at W3Schools Section Tag

<div> The Div Tag </div>

The <div> tag is commonly used to group elements together for styling, layout, or JavaScript purposes.

The code that produced the output above looks like this:

<div style="color: red; font-weight: bold;">
The <div> tag is commonly used to group elements together for styling, layout, or JavaScript purposes.
</div>

I found this tag at W3Schools Div Tag