Skip to main content Skip to course content Envision Tech Academy Logo

HTML Tags

HTML tags are the building blocks of a web page. They tell the web browser how to structure the content and what each piece of content represents. Tags are enclosed in angle brackets '<' and '>', and most tags come in pairs: an opening tag and a closing tag.

Opening tags are always just a '<' the name of the tag and then a '>' like: <tagName>

Closing tags are the same as opening tags, but with a '/' before the tag name like: </tagName>

Here are some common HTML tags:

  • <h1> to <h6> - Headings
  • <p> - Paragraph
  • <a> - Anchor (link)
  • <img> - Image
  • <ul> - Unordered List (bulleted list)
  • <ol> - Ordered List (numbered list)
  • <table> - Table

Exercise

Which ones are opening tags?