Learn HTML by Building a Cat Photo App - Step 6

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
<html>
<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>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0

Challenge: Learn HTML by Building a Cat Photo App - Step 6

Link to the challenge:

You added too many spaces in front of the p element and now it is indented too far. It should be line up with the h2 and comment so that they are all indented the same amount. Make sure you do not change anything else in the HTML. The only thing you want to do is indent the p element so it is indented the same amount as the h2 and comment. If may help if you restart the step to get the original formatting back and then only add two spaces in front of the p element and don’t change anything else.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.