Learn HTML by Building a Cat Photo App - Step 1

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

// running tests Your

h1

element should have a closing tag. Closing tags have a

/

just after the

<

character. Your

h1

element’s text should be

CatPhotoApp

. You have either omitted the text, have a typo, or it is not between the

h1

element’s opening and closing tags. // tests completed I STILL DONT GET IT
Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <h1>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/116.0.0.0 Safari/537.36 Edg/116.0.1938.62

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

Link to the challenge:

welcome to the community :smiley:

To display code in a post use a back tic before and after a code line and three back tics before and after a code block.
If you cant find a back tic on your keyboard use ALT + 096 to display one.

The h1 tag comes in pairs.
An opening tag <h1>
and a closing tag </h1>

Anything between the tags is displayed in the browser
eg.
<h1>This is an Example</h1>

will display the words

This is an Example


The step your on asks you to change the text displayed from ‘Hello World’ to ‘CatPhotoApp’

You can restart the step by clicking on ‘Reset’
image

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