Learn HTML by Building a Cat Photo App - Step 3

i don’t understand

  **Your code so far**<html>

CatPhotoApp

Cat Photos

p

Click here to view more photos

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

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

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

Link to the challenge:

hello, try to click on the button “Restart Step” to reset the code to what it was at the start of this step.
After that you are asked to add a paragraph element. Paragraph elements are just like h1 elements but they use the letter p in the tag name.
Here’s an example of a paragraph element:
<p>This is a paragraph</p>

Notice how the elements you are learning all have opening tags and closing tags?
Remember that as you create new code (there are some HTML tags that do not follow this rule but most of them do).

Hope this helps

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