Can someone please help me with this code. I’m barley starting to learn and I’m not understanding what I did wrong. Watch it be really simple too lol

It’s the paragraph (p) part that I need help in.

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

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15

Challenge: Step 3

Link to the challenge:

The instructions for this Step are being rewritten because you are not the only one to have this misunderstanding. The parens around p are not intended to be included in the tag. Notice how all of the other tags (<body>, <h1>) do not have parens in them, just the name of the tag (body, h1). That’s exactly what you want to do with the p tag.

Thank you so much. I fixed it

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