Uncomment HTML need help please

Tell us what’s happening:

Your code so far

<h1>Hello World</h1>
->
<!-
<h2>CatPhotoApp</h2>
->
<!-
<p>Hello Paragraph</p>
->
I need help to figure out how to uncomment h1 h2 and p. I have tried everything i can think of but i do not know the format to do it successfully. 
PLEASE HELP

Originally all of the elements are commented together. You should remove that comment, then comment the <h1> and <p> elements individually.

@Dpmunro,
html comment syntax is as follows:

When you want to comment something you put <!-- Commented out code -->

Make sure you use a double ‘-’ or it won’t identify it as a comment

Take another look at your code and you should see what you missed.