Learn HTML by Building a Cat Photo App - Step 1

Tell us what’s happening:

i can’t change my h1 element’s text to CatPhotoApp

Your code so far

<h1>Hello World</h1>
<CatPhotoApp>


<!-- User Editable Region -->

    <CatPhotoApp>Hello World</CatPhotoApp>

<!-- 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/126.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 1

Hi there and welcome to our community!

This is an h1 (main heading) element:

<h1>Hello World</h1>

It is comprised of an opening h1 tag (<h1>), text content, and a closing h1 tag (</h1>).
Whatever is between the opening and closing tags will be displayed to the user as a main heading on the webpage.
You’re designing a cat photo app, so you’re asked to change the text ‘Hello World’ to ‘CatPhotoApp’. You shouldn’t change the element tags.

1 Like

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