Learn HTML by Building a Cat Photo App - Step 9

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves cute cats online!</p>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg">
      <img src="cat.jpg" Alt="A cute oeange cat lying on its back">
    </main>
  </body>
</html>

Your mobile information:

CPH2583 - Android 15 - Android SDK 35

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

Link to the challenge:

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!

I am unable to code catphotoapp i need some help

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Welcome to the forum @brooks9283

Your img element does not have an alt attribute. Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.

There are a number of issues with your code:

  1. you have two img elements instead of one, if you merge the two elements, make sure to remove the incorrect src attribute
  2. attribute names are case sensitive
  3. check the colour of the cat, there is a typo

Happy coding