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

User Agent is: Mozilla/5.0 (iPad; CPU OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/104.0.5112.88 Mobile/15E148 Safari/604.1

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

Link to the challenge:

You need to change the text within h1 elements to Cat Photo App, you have created a “CatPhotoApp” element that doesnt exist. Restart the step and change the text inside the h1.

2 Likes

You simply need to have the h1 element contain CatPhotoApp

<h1>CatPhotoApp</h1>

Hope this helps

1 Like

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