Opening Tag Description Closing Tag
<p> Essentially creates a “paragraph” (Or really any other text </p>
separate from others) separate from the rest of the text
<!DOCTYPE Tells the computer that the document is written in the No closing tag
html> HTML coding language
<html> Marks the start of your html coding </html>
<head> Contains information (sometimes called “metadata”) about </head>
your webpage
<body> It contains all the main content of your webpage </body>
<h#> It enters the text as a heading. There are 6 headings </h#>
(headings 1-6) and the headings get progressively smaller
as the numbers get higher
<ol> Enters the text as a numbered list, should only be used </ol>
before and after the list items
<ul> Enters the text as a bulleted list, should only be used </ul>
before and after the list items
<li> Enters the text as an indented list item, can only be used </li>
inside the tags declaring the list (<ul>,<ol>, etc.)