Help with HTML issue please

Tell us what’s happening:

Your code so far


<!-—
<!-—h1>Hello World</h1-—>

<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-—>

It’s asking me to end every comment with —> which I thought I did 
And not to change the order of h1, h2 and p which I don’t think I’ve done 

Your browser information:

Challenge: Comment out HTML

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/comment-out-html

Comments will go outside the tags. For instance:

<!--<h1>Hello World</h1>-->

See how the <h1> tag is still intact and the brackets are not broken?

you need to switch off smart punctuation, many of your dashes are the long dashes wich are invalid characters in code.

Other than that, follow what @carolinalad said

Thank you for your replies, it perfectly worked
But what hasn’t worked yet is where it says, don’t change the order of h1, h2 and p - not sure what to do here?