Learn HTML by Building a Cat Photo App - Step 1

I know nothing about coding and I am trying to learn. Please help! IT asked me to:

HTML elements have opening tags like <h1> and closing tags like </h1>.

The text for an element goes between its opening and closing tags.

Find the h1 element and change its text to:

CatPhotoApp

Which I have but it keeps saying:

Your h1 element should have an opening tag. Opening tags have this syntax: <elementName> .

What am I doing wrong?

  **Your code so far**
<html>
<body>
  <CatPhotoApp>Hello World</CatPhotoApp>
</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 1

Link to the challenge:

Hello!

You have to keep the elements intact and just replace the Hello World text inside with the one given by the task such as “CatPhotoApp”.
*Do not forget to close your element with the “/” character :slight_smile: .

1 Like

See if this post helps…

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