HTML Tags
HTML Anatomy
Debugging
100

<p> , </p>

What does the P refer to in this tag?

Paragraph

100

the first HTML tag used to start an HTML element. The tag type is surrounded by opening and closing angle brackets.

Opening Tag

100

 </p>What's wrong with this sentence?<>

<p>What's wrong with this sentence?</p>

200

<h3> , </h3>

What does the H refer to in this tag?

Header

200

 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

200

Fix this h2 header:

<H2>Types of Dogs</h3>

<h2>Types of Dogs</h2>

300

<li> , </li>

What does LI refer to in this tag?

List Item or List

300

The information (text or other elements) contained between the opening and closing tags of an HTML element.

Content

300

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

400

<br>

What does the BR refer to in this tag?

Line Break

400

the element name, surrounded by an opening (<) and closing (>) angle bracket.

Tag

500

<!-- , -->

What does this HTML tag represent in an element?

Comment

500

 a unit of content in an HTML document formed by HTML tags and the text or media it contains.

Element