Learn HTML by Building a Cat Photo App - Step 1

Tell us what’s happening:
Describe your issue in detail here.
Hi guys!
Just started my coding journey. I don’t know what I’m doing wrong. I’ve change the html to the catphotoapp and changed the H1s in the coding but it says my code doesn’t pass.

  **Your code so far**
<https://freecatphotoapp.com
>
<body>
  <CatphotoApp>Hello World</CatPhotoApp>
</body>
</https://freecatphotoapp.com
>
  **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 1

Link to the challenge:

Hi @Caesar1!

Fellow learner here,

Welcome to the FCC Forum!

Only do what the question asks you to do, in this case its

Find the h1 element and change its text to:

CatPhotoApp

An element consists of opening tags and closing tags. So a paragraph element or a p element would be something like this

<p>Hello Caesar1!</p>

As you can see the Hello Caesar1 is enclosed in an opening tag <p> and a closing tag </p>. This makes up an element. This element has a text content of “Hello Caesar1”.

Using that knowledge, you should be able to figure out which one is the h1 element in the given code!

Tips: You can restart the code if you messed up the code too bad :smile:

Hope that helps :+1:

1 Like

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