Here is a list of HTML tags. All of these tags can be used to build onto your HTML website!

  • <HTML></HTML> - These tags define where your HTML code begins and ends.
  • <HEAD></HEAD> - These tags define where the head of your HTML document begins and ends. Heads usually include links to external JavaScript or CSS pages, as well as Internal JavaScript or CSS code. They also include the title.
  • <TITLE></TITLE> - These tags go inside of your HEAD tags, and define the title of your page, which will appear in the browser's tab.
  • <link /> - This tag is commonly used to link your HTML page to an external CSS page.
  • <script></script> - These tags can go in between the <HEAD> and </HEAD> tags in your HTML code, and are commonly used to add JavaScript functions to your HTML web page. For more about JavaScript, please read our JavaScript section!
  • <BODY></BODY> - These tags define where the body of your HTML document begins and ends. The Body includes all HTML that will appear on your page.
  • <a></a> - These tags allow you to link to both external and internal web pages, as well as other sections of the current HTML web page.
  • <img /> - This tag allows you to add an image onto your HTML web page.
  • <h1></h1> - These are header tags used for creating headers on your page. They include h1 through h6.
  • <p></p> - These are paragraph tags. Adding text between these tags create a nice paragraph feel to your website.
  • <BR /> - This is called the break tag. This element ends the current line on the webpage and starts a new line.
  • <table></table> - this tag is used to create tables on your webpage. Although this tag used to be used to create the entire layout of your website, it should now be strictly used to create tables. Many companies nowadays would much rather use tags such as <div> or <span> to create their website, since these tags are much more responsive.
  • <tr></tr> - these tags go within the <table> and </table> tags, and are used to create new table rows.
  • <td></td> - these tags go within the <tr> and </tr> tags, and are used to create new table data or table cells.
  • <div></div> - Div tags are one of the most commonly used tags today. They are used to divide certain sections of websites from one another. Anything after a div tag will start on a new line.
  • <span></span> - span tags are very similar to div tags, with the exception that anything after the span tag can remain on the same line.
  • <style></style> - These tags can go in between the <HEAD> and </HEAD> tags in your HTML code, and are commonly used to add CSS rules to your HTML web page. For more about CSS, please read our CSS section!
  • <select></select> - These tags start and end a dropdown list.
  • <option></option> - These tags go in between the <select> and </select> tags, and hold the options for the dropdown list. For example, to create a dropdown list that allows you to select your gender, you can write:
  • <select>
    <option selected>Choose One</option>
    <option>Male</option>
    <option>Female</option>
    </select>

  • <input /> - These tags are used to receive some sort of input from the user. You usually define the type of input you are trying to receive by a “type” attribute.
  • <ul></ul> - These tags are used to start and end an unordered list, or bulleted list.
  • <ol></ol> - These tags are used to start and end an ordered list, or numbered list.
  • <li></li> - These tags go between either the <ul> and </ul> or <ol> and </ol> tags. These are the list items for your ordered or unordered list. For example, to create an unordered list of the four Beatles, we can write:
  • <ul>
    <li>John Lennon</li>
    <li>Paul Mccartney</li>
    <li>George Harrison</li>
    <li>Ringo Starr</li>
    </ul>

The number of tags you can use in HTML is nearly endless. However, a lot of the time you can get the same effect a tag may have by simply using CSS. For more tags, please visit W3Schools.

Don't know what HTML is? Click here to learn about how to write in HTML.

Startup Discount
Small Business?
Contact us for an Enormous Discount!