<h1-6> |
Used as headings and subheadings for a webpage. |
<img> |
Embeds an image into the webpage (src, alt) |
<link> |
Self-closing. Links other files to this one (rel, href) |
<!-- --> |
Comment formatting. |
<tr> |
Used within a <table> element. Adds a new row to the table. <th> and <td> are used within this. |
<th> |
Used within a <table> element. Defines a header for table rows or columns. |
<td> |
Used within a <table> element. Adds data to the table. |
<thead> |
Used within a <table> element. Groups the header content in a table together. |
<tbody> |
Used within a <table> element. Groups the body content in a table together. |
<main> |
Specifies the main content of the document. |
<section> |
Specifies a section with a specific topic. |
<article> |
Specifies information that can be standalone. |
<aside> |
Specifies content that is separate or a side-note to the main content of the page. |
<figure> |
Contains media content that can be grouped together with other information like <figcaption> |
<figcaption> |
Used within a <figcaption> element. Specifies a caption to the corresponding media. |