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 -->

    <catPhotoApp</CatPhotoApp>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 12; TECNO CI6n Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/103.0.5060.129 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/406.0.0.26.90;]

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

Link to the challenge:

Hello there and welcome to the forum!

The instructions for this first step are to:

Find the h1 element and change its text to ‘CatPhotoApp’

An HTML element (usually) has an opening tag and a closing tag. The name of these tags tell you what kind of element it is.

For instance <h1>Text Content</h1> is an h1 (or heading) element, used to create titles or headings (like news headlines) above the content which follows.
The ‘Text Content’ between the tags is what you will see displayed on the webpage.

So, for this step, don’t change the tags but just amend the text between them.
Reset the lesson and try again.