HTML
HTML Introduction
HTML Element
HTML Attributes
HTML Heading
HTML Paragraph
HTML Style
HTML Format
HTML Color
HTML Link
HTML Image
HTML Table
HTML List
HTML Symbols
HTML Emojis
HTML Forms
HTML Text Format
HTML contains several elements for defining text with a special meaning.
HTML Format Element
Formatting elements were designed to display special types of text:
The HTML <b> element defines bold text, without any extra importance.
The HTML <strong> element defines text with strong importance. The content inside is typically displayed in bold.
HTML <mark> Element
The HTML <mark> element defines text that should be marked or highlighted:
HTML <sub> Element
The HTML <sub> element defines subscript text. Subscript text can be used for chemical formulas, like H2O.
Subscript text appears half a character below the normal line, and is sometimes rendered in a smaller font:
HTML <sup> Element
The HTML <sup> element defines superscript text. Superscript text appears half a character above the normal line.
Superscript text can be used for footnotes, like WWW[1]:
HTML Text Formatting Elements
Example
This text is bold
This text is italic
This is subscript and superscript
- <b> - Bold text
- <strong> - Important text
- <i> - Italic text
- <em> - Emphasized text
- <mark> - Marked text
- <small> - Smaller text
- <del> - Deleted text
- <ins> - Inserted text
- <sub> - Subscript text
- <sup> - Superscript text
Example
<b>This text is bold</b>
Example
<strong>This text is important!</strong>
Example
<p>Do not forget to buy <mark>milk</mark> today.</p>
Example
<p>This is <sub>subscripted</sub> text.</p>
Example
<p>This is <sup>superscripted</sup> text.</p>
Tag | Description |
---|---|
<b> | Defines bold text |
<em> | Defines emphasized text |
<i> | Defines a part of text in an alternate voice or mood |
<small> | Defines smaller text |
<strong> | Defines important text |
<sub> | Defines subscripted text |
<sup> | Defines superscripted text |
<ins> | Defines inserted text |
<del> | Defines deleted text |
<mark> | Defines marked/highlighted text |