Learn HTML by Building a Cat Photo App - Step 1

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

Not sure how by pass this step
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_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

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

Link to the challenge:

HTML elements have opening tags like <h1> and closing tags like </h1>.

Find the h1 element and change its text to:
CatPhotoApp

You changed the h1 element into a CatPhotoApp element, but that isn’t a real element.

The challenge wants you to only change the words in between <h1> and </h1> (the part that says Hello World). You should not change or remove h1 at all.

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