Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

HTML - Text Formating

Back


Formating

HTML contains several elements for defining text with a special meaning.

Tag Description Example
<b> Defines bold text Bold text
<strong> Defines important text Important text
<em> Defines emphasized text Emphasized text
<i> Defines a part of text in an alternate voice or mood Italic text
<mark> Defines marked/highlighted text Marked text
<small> Defines smaller text Smaller text
<del> Defines deleted text Deleted text
<ins> Defines inserted text Inserted text
<u> Defines underlined text Underlined text
<sub> Defines subscripted text Subscript text
<sup> Defines superscripted text 25th Sept
<q> Defines a short quotation Quotation text
<code> | Defines a piece of computer code | Class Java(){}    
<kbd> Defines keyboard input Ctrl+Alt+Del

TOP