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.
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> | |||||
| 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> | |||||
| 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> |
|
||||
| <ol type="i"><li>January</li><li>February</li><li>March</li></ol> |
|
|||||
| Ordered List <ol> | Numbered<ol><li>Monday</li><li>Tuesday</li><li>Wednesday</li><ol> |
|
||||
| Numbered Special Start<ol start="10"><li>Bread</li><li>Butter</li><li>Jam</li></ol> |
|
|||||
| 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> |
|
||||
| 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


