Learn HTML by Building a Cat Photo App - Step 1

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <h1>Hello World</h1>catPhotoApp</h1>


<!-- User Editable Region -->

  </body>
</html>

Your browser information:

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

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

Link to the challenge:

Hi there and welcome to the forum!

The first step in this project is to change this:

<h1>Hello World</h1>

This is an HTML heading element. The opening and closing tags <h1> and </h1> define the element. The text between the tags is the element’s content.
All you need to do in this step is change the content of the element, without altering the tags in any way.

So, simply replace the text ‘Hello World’ with the new text specified in this step.