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>
  <h1>Hello World</h1>
</body>
</html><body><CatPhotoApp>Hello World</CatPhotoApp>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Safari/537.36

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

Link to the challenge:

Your solution is not correct as you may have guessed.
The original code provided was:
<h1>Hello World</h1>

And the instructions given were:

Find the h1 element and change its text to:

CatPhotoApp

Make sure that the text is between its opening and closing tags.

The part you may have misunderstood is “Find the h1 element and change its text”
In the code given by the exercise the <h1> element’s text is actually the words Hello World.
So you need to erase those words and replace them with the words provided: CatPhotoApp

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