Comment out HTML Element

Tell us what’s happening:

Your code so far

<!DOCTYPE html>
<h1>Hello World</h1>

<!
<h2>CatPhotoApp</h2>

<p>Hello Paragraph</p>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/comment-out-html

You need to write it such that the <h1> element and the <p> element are commented out, but the <h2> remains uncommented.

This is how you comment out an element:

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