HTML text tags are used to style and format text on a webpage. They allow you to emphasise, highlight, or structure text in different ways, making your content more readable and visually appealing.
Text tags help define the purpose of specific text. For example, you can make text bold to emphasise importance, italicise to indicate subtle emphasis, or even mark text as deleted or inserted. These tags give you control over how text is displayed.
Here’s a list of common HTML text tags and their usage:
-
Bold Text:
<b>Bold text</b>
- Example:
<b>This text is bold</b>
- Example:
-
Important Text:
<strong>Important text</strong>
- Example:
<strong>This is important</strong>
- Example:
-
Italic Text:
<i>Italic text</i>
- Example:
<i>This text is italic</i>
- Example:
-
Emphasised Text:
<em>Emphasised text</em>
- Example:
<em>This is emphasised</em>
- Example:
-
Marked Text:
<mark>Marked text</mark>
- Example:
<mark>This text is highlighted</mark>
- Example:
-
Smaller Text:
<small>Smaller text</small>
- Example:
<small>This is small text</small>
- Example:
-
Deleted Text:
<del>Deleted text</del>
- Example:
<del>This text was removed</del>
- Example:
-
Inserted Text:
<ins>Inserted text</ins>
- Example:
<ins>This text was added</ins>
- Example:
-
Subscript Text:
<sub>Subscript text</sub>
- Example:
H<sub>2</sub>O
- Example:
-
Superscript Text:
<sup>Superscript text</sup>
- Example:
x<sup>2</sup>
- Example: