All HTML Tags: List of All HTML Tags

HTML Tags are used for presenting and formatting text on a webpage. The tags and their respective attributes are used to create HTML documents, that can viewed in browsers.
HTML tags, also known as HTML elements or HTML codes are used to format content on the webpage. HTML is an abbreviation for Hypertext Markup Language. Anyone who uses the Internet for marketing their services or even for personal use, uses this language to add creativity to their webpages. In the following table, one will find a comprehensive HTML tag list.

All HTML Tags

HTML Tags Input Output
Bold <b> <b>Nice day</b> Nice day
Italics <i> <i>Nice day</i> Nice day
Underline <u> <u>Nice day</u> Nice day
Small text <small> <small>New York</small> New York
Deleted text <strike> <strike>New York</strike> New York
Subscript <sub> O<sub>2</sub> O2
Superscript <sup> E=mc<sup>2</sup> E=mc2
Body of HTML Document <body> <body>content of the page</body> Contents of the page
Line Break <br> First<br>Second</br> First Second
Center Alignment <center> <center>Good Day</center>
Good Day
Font <font> <font face="Times New Roman" size="4">Good Day</font> Good Day
<font face="Times New Roman" size="4" color="#ff0000">Good Day</font> Good Day
List <li> <ul><li type="square"> First</li><li type="circle">Second</li><li type="disc">Third</li></ul>
  • First
  • Second
  • Third
<ol type="i"><li>January</li><li>February</li><li>March</li></ol>
  1. January
  2. February
  3. March
Ordered List <ol> Numbered<ol><li>Monday</li><li>Tuesday</li><li>Wednesday</li><ol>
  1. Monday
  2. Tuesday
  3. Wednesday
Numbered Special Start<ol start="10"><li>Bread</li><li>Butter</li><li>Jam</li></ol>
  1. Bread
  2. Butter
  3. Jam
Insert table <table>
Insert columns <td>
Insert row <tr>
<table border="1">
<tr>
<td>January</td>
<td>2008</td>
</tr>
<tr>
<td>February</td>
<td>2009</td>
</tr>
</table>
January 2008
February 2009
Hyperlinks <a href>
<a href="http://www.buzzle.com/">Buzzle</a> Buzzle

An important feature about the tags that should be borne in mind while writing them is that no spaces should be left between the opening and closing tags. HTML tags is the standard language used for presentation of web content. One can use the above complete list of HTML tags to enhance the look of an article, which eventually helps increase readability.
Like This Article? Please Share!
Post Comment | View Comments
Your Comments:
Your Name: