HTML provides several elements for formatting text to enhance readability and structure. These formatting elements allow you to apply styles such as bold, italic, underline, and more to your text.
Here are some common HTML text formatting elements:
<b>This text is bold.</b>
<i>This text is italic.</i>
<u>This text is underlined.</u>
<mark>This text is highlighted.</mark>
<small>This text is smaller.</small>
<del>This text is deleted (strikethrough).</del>
<ins>This text is inserted (underline).</ins>