|
|
| HTML Formatting Tags
|
|
HTML Formatting Tags
» HTML uses tags like <b> and <i> for formatting output, like bold or italic text.
» These HTML tags are called formatting tags.
» Refer to the bottom of this page for a complete reference
|
Text Formatting Tags
| Tag |
Description |
| <b> |
Defines bold text |
| <big> |
Defines big text |
| <em> |
Defines emphasized text |
| <i> |
Defines italic text |
| <small> |
Defines small text |
| <strong> |
Defines strong text |
| <sub> |
Defines subscripted text |
| <sup> |
Defines superscripted text |
| <ins> |
Defines inserted text |
| <del> |
Defines deleted text |
| <s> |
Deprecated. Use <del> instead |
| <strike> |
Deprecated. Use <del> instead |
| <u> |
Deprecated. Use styles instead |
|
<br> or <br/>
» In XHTML, XML, and future versions of HTML, HTML elements with no end tag (closing tag) are not allowed.
» Even if <br> works in all browsers, writing <br /> instead is more future proof.
|
|
Back to Top |
|