HomeReferencesHTML Tags

Presentational Tags

b (bold), i (italic), tt (teletype), sub (subscript), sup (superscript), big, small and hr (horizontal rule) are all presentational tags. As such, their use should be avoided and CSS used instead.

HTML Dog, The Book HTML Dog book cover

HTML Dog is hosted by Titan Internet

Required Attributes

  • None.

Optional Attributes

Example


<p><b>This is bold</b>, <i>this is italic</i>, <tt>this is teletype</tt>.</p>
<hr />
<p><sub>This is subscript</sub>, <sup>this is superscript</sup>, <big>this is big</big>, <small>this is small</small>.</p>