What is a closing tag

Tell us what’s happening:
What is a closing tag for HTML?

Your code so far


<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<main>
<h1>Hello World</h1>
<p>Hello Paragraph<p>
  </main>
  <p>Purr jump eat the grass rip the couch scrached sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scrached.</p>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12871.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.141 Safari/537.36.

Challenge: Introduction to HTML5 Elements

Link to the challenge:

A little more than you asked for but…

HTML tags vs. elements vs. attributes

HTML tags

Tags are used to mark up the start and end of an HTML element. The following are paragraph tags.
<p></p>

HTML elements

An element in HTML represents some kind of structure or semantics and generally consists of a start tag, content, and an end tag. The following is a paragraph element:
<p>This is the content of the paragraph element.</p>

HTML attributes

An attribute defines a property for an element, consists of an attribute/value pair, and appears within the element’s start tag. An element’s start tag may contain any number of space separated attribute/value pairs.
The most popular misuse of the term “tag” is referring to alt attributes as “alt tags”. There is no such thing in HTML. Alt is an attribute, not a tag.
<img src="foobar.gif" alt="A foo can be balanced on a bar by placing its fubar on the bar's foobar.">

Now, I looked at what you did and you didn’t quite follow the instructions. You have elements out of place. It’d be best if you clicked the “reset all code” button and pay attention to what the instructions ask you to do. (You’re doing good by the way…just out of order)

Thank you so much I realized that I was missing a closing tag on the paragraph line. Thanks for the help.