Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
<html>
<body>
<h1>CatPhotoApp</h1><br><main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p><br>Click here to view more cat photos.</p>
</main>
</body>
</html>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36 OPR/87.0.4390.45
You definitely don’t want to add any new elements such as <br> to the HTML. The only thing you need to do is push in the three child elements in main two spaces each using the space bar on your keyboard.
I would restart the step to get the default formatting back and then only do what the instructions ask.
To display your HTML code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key.
<body>
<h1>CatPhotoApp</h1><main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more cat photos.</p>
</main>
</body>
</html>
```this is the code, i tried adding the line spacing using the space bar but it didn't work, please help me to resolve it thanks
Again, I think you need to restart the step to get back the original formatting. If you don’t do that then I don’t think you will pass this step. After you have done that, do not do anything other than adding two spaces before the h2, comment, and p elements. Once you have done this, if you still aren’t passing, then paste your updated code in here again.