Learn HTML by Building a Cat Photo App - Step 3

HOW TO use p element

  **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 (Windows NT 6.1; rv:101.0) Gecko/20100101 Firefox/101.0

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

Link to the challenge:

Hi! Welcome to the forum!

If we compare what you have written,

click here to view more cat photos.

to what the lesson asks for,

Click here to view more cat photos.

You are missing a capital letter at the start. You must always match the text the lesson asks for exactly.

Also html elements should not use capital letters.

Correct

<p>I am a paragraph.</p>

Incorrect

<P>I am a paragraph</P>

<p>I am a paragraph</P>

<P>I am a paragraph</p>

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