Learn HTML by Building a Cat Photo App - Step 2

Tell us what’s happening:
Describe your issue in detail here.
I do not understand how to do the second step

  **Your code so far**
<html>
<h1>Cat Photos</h2>
  <h1>CatPhotoApp</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/104.0.0.0 Safari/537.36

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

Link to the challenge:

If I am not mistaken, you need to rearrange some of the content and fix some of the tagging.
Elements: html, h1, body – this is just for clarification

Tags are sorted like this -
Opening tags <[insert element]>
Closing Tags </[insert element]>
Together <[insert element]>…your content goes here…</[insert element]>

You are missing an opening tag for the body element

CatPhotoApp

goes directly under the opening tag of the opening tag of the HTML element and the next step is asking you to make an h2 element for Cat Photos which would be this

Cat Photos

Remember to read carefully, use the correct tags, organize, and don’t be afraid to google or watch youtube.

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