What do mean with <elementName>?

Tell us what’s happening:
Describe your issue in detail here. It say
Your p element should have an opening tag. Opening tags have the following syntax: <elementName>. But i do have a


  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <elementName>Click here to view more cat photos</h2>
</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:

HI @Thomas3 !

Welcome to the forum!

<elementName> was an example to show you the basic syntax for opening and closing tags.

For example

<elementName>some text goes here</elementName>

You are supposed to replace elementName with the actual name of the html element.
So in this case, they want you to create a p element.

You can also look at documentation for help on the p element

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