<p> , </p>
What does the P refer to in this tag?
Paragraph
the first HTML tag used to start an HTML element. The tag type is surrounded by opening and closing angle brackets.
Opening Tag
</p>What's wrong with this sentence?<>
<p>What's wrong with this sentence?</p>
<h3> , </h3>
What does the H refer to in this tag?
Header
the second HTML tag used to end an HTML element. Closing tags have a forward slash (/) inside of them, directly after the left angle bracket.
Closing Tag
Fix this h2 header:
<H2>Types of Dogs</h3>
<h2>Types of Dogs</h2>
<li> , </li>
What does LI refer to in this tag?
List Item or List
The information (text or other elements) contained between the opening and closing tags of an HTML element.
Content
What's wrong with this unordered list?
<ol>
<li>Cake</li>
<li>Cookies</li>
<li>Pie</li>
</ol>
The ol tags should be changed to ul because Unordered List
<br>
What does the BR refer to in this tag?
Line Break
the element name, surrounded by an opening (<) and closing (>) angle bracket.
Tag
<!-- , -->
What does this HTML tag represent in an element?
Comment
a unit of content in an HTML document formed by HTML tags and the text or media it contains.
Element