Learn HTML by Building a Cat Photo App - Step 1

Tell us what’s happening:
Describe your issue in detail here.
do i have to create my own code or just put a different one
Your code so far

<html>
  <body>

<!-- User Editable Region -->

<Photo>Hello World</catphotoapp>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) 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:

Hi there and welcome to the forum!

You should not amend the element tags, only the text content between the tags.

An HTML element is usually constructed of an opening tag, some content and a closing tag. The tags tell you what type of element it is and the content is what will be displayed on screen to the user.

This example is an h1 (heading) element with the text content ‘This is a heading’:

<h1>This is a heading</h1>

If you want to change what is displayed on screen to the user, simply change the text content.

1 Like