Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:
I need to make a paragraph and it’s telling me to name the P3 please help

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

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Mobile/15E148 Safari/604.1

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

Link to the challenge:

Hello, welcome to the forum!

The instructions for this step say:

Create a p element below your h2 element and give it the following text:

Click here to view more cat photos.

So what you need to do is:

  • restart the step (click on restart step button and this will clear the code back to where this step started).
  • then add a new line beneath the line for h2
  • write a p element in this new line like
<p>words in the middle</p>

So make sure you make the opening tag and then the words given by the exercise then finally a closing tag.

Hoping this helps.

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