Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:
Describe your issue in detail here.
Hi there, I’m stuck on step 3. I’m writing the text asked, but the error message says it’s the wrong text. I’ve checked several times and I can’t find the mistake or typo.
Thanks in advance.
Orgelio Junior

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

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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:

You don’t need a h3 element, only the p element. :slight_smile:

<p>This is a p element!</p>
1 Like

get rid of the h3 tags. I don’t know why you have the closing tag for a p element at the start, that should be at the end of the text, then put the opening tag for p before the text. remember, no spaces in between tags and the text, unless it specifies.

1 Like

Thanks, now it makes sense.

2 Likes

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