Learn HTML by Building a Cat Photo App - Step 1

I am new to coding. Can u help me make this code work. Idk why it not working.

Step 1
HTML elements have opening tags like

and closing tags like

.

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

Find the h1 element and change its text to:

CatPhotoApp

Hello World Sorry, your code does not pass. Hang in there.

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

<html>
  <body>

<!-- User Editable Region -->

    <CatPhotoApp>Hello World</h1>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

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

Link to the challenge:

Hello and welcome to the community!

It should look like

< h1>Hello World< /h1>

Only the CatPhotoApp should replace the words Hello World.

< h1> Instruction text < /h1>

Hope this helps!

Happy coding!

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