Learn HTML by Building a Cat Photo App - Step 1

I’m running into an issue where its telling me Your h1 element should have an opening tag. I believe I inserted the right information

coding work
ave this syntax: <elementName> .

  **Your code so far**
<html>
<body>
  <CatPhotoApp>Hello World </CatPhotoApp>
</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: Learn HTML by Building a Cat Photo App - Step 1

Link to the challenge:

Hey! Welcome to the freeCodeCamp’s community forums.

Tags are a way for you to describe to the browser how you want the text inside of them to be displayed. for example if you have the text “hello” and you want the browser to render it as a heading, you would use the h1 tag for this.

<h1>hello</h1>

The challenge expects you to display the text “CatPhotoApp” inside of the h1 tag so it can be displayed as a heading.

Hope this helps! :smile:

thanks you so much for your help

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