Learn HTML by Building a Cat Photo App - Step 3

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2> <h2>Click here to view more cat photos.</p>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14909.100.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

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

Link to the challenge:

The step is failing because you added an h2 starting tag and a p closing tag.
Make the starting tag into a p tag to pass.

Your code should be :
Instead of:

<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
 <h2>Click here to view more cat photos.</p>
</body>
</html>

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

The solution has been removed from your post.

Hi there,

Thank you for trying to contribute to the forum. We ask you to not post solutions to FCC exercises as it is our hope that every camper can learn and arrive at solutions by themselves (with some guidance only).

Thanks for helping your fellow campers on their journey.

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