You have more than one h1 element. Remove the extra h1 element.

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

  **Your code so far**
<h1>CatPhotoApp</h1>
<body>
  <h1>Hello World</h1>
</body>
</html>

  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Step 1

Link to the challenge:

You must change the existing h1, not create a new one.
EXAMPLE:
wrong:

<h2>Change this!!!!</h2>
<h2>No, I won't change you :P</h2>

correct:

<h2>Changed!!! :)</h2>

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