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

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

Ahh, this is a common mistake on this step. Changing the text of an element means to change the text inside of the element, in other words, between the opening and closing tags. In this case the opening tag is <h1> and the closing tag is </h1>. So you want to change that text that is in between those two tags.

You might want to restart the step to get the original HTML back and then just change the text between those two tags.

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