Learn HTML by Building a Cat Photo App - Step 1

Tell us what’s happening:
Describe your issue in detail here.
im trying to build a cat photo app

  **Your code so far**
<html>
<body>
  <CatPhotoApp1> 
    
  </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/101.0.0.0 Safari/537.36

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

Link to the challenge:

dear, the text for h1 element should be CatphotoApp.

Hell there! Welcome to the freeCodeCamp’s community forums.

In this challenge, you’re supposed turn the text “CatPhotoApp” into a heading by surrounding that text with an h1.

HTML is a markup language, meaning you can “mark” content with it. You can tell the browser how or in what way you want some text to show up. for example:
If i want my name “Taran” to be displayed as a heading which is smaller than h1 all i need to do is take my name and stick it between the h2 tag.

<h2> Taran </h2>

Pay special attention to the brackets < > and slashes /.

Hope this helps!

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