Learn HTML by Building a Cat Photo App - Step 1

Cat photo app is not working or im typing it in the wrong section

Tell us what’s happening:

Describe your issue in detail here.

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <h1>CAT PHOTO APP</h1>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

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

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 1

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Welcome to FFC forum. You should use exact text with exact latter casing. And no space between words
@ASATCHEL

Hello and welcome @ASATCHEL !

You have the correct way to enter code between the tags. However, it needs to remain like CatPhotoApp as provided to us in the instructions.

May your coding path be smooth.

That was really helpful.

1 Like

Glad to help.

May you enjoy a smooth coding path.

im on my h2 path and im kinda lost…

Could you please post the code and question in a new post, using the Help that appears after three failed attempts?

If it is step two. Just add the h2 below the h1 in the same manner as the h1 tags, and place copy and paste the text provided between the tags.

But it is always best to use the help to post questions and code so that we are providing you with accurate information and help.

May your coding path be smooth @ASATCHEL

Your h2 element should have an opening tag. Opening tags have this syntax: <elementName> .

Though the text in this quote is not correct, I am using it to explain the error message you are receiving @ASATCHEL .

Notice how there is an <h1> opening element tag, and an </h1> closing tag around the text. Notice the slash before the h1 in the closing tag.

The error message appears to be stating there opening <h2> is missing before the text that you have entered into the code.

Please make sure to always have the opening and closing element tags for elements?

Some elements, you will find, do not require both opening and closing tags. Those are self closing, for example: <img>, or <link> or <meta> are all self closing elements and do not require a second tag to close them.

Please for any new questions use the HELP that appears after three failed attempts at that step to post the code along with your questions? It allows for easier and quicker responses that focus on the problem.

May your coding path be smooth.

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