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>
    <h1>CatPhotoApp</h1>

<!-- User Editable Region -->

    <h2>Cat Photos</h2>
    <p>See more cat photos in our gallery.</p>
    <!--:<p> TO DO Add link to cat photos</p>,-->

    

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 4

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!

Hello! Welcome to the forum.
Next time you create a post remember to explain your issue.

Your comment should be below your h2 element and above your p element. You have a opening p element tag in your comment and ensure that your text in your comment is exactly the same as in the instruction.

what you need to do in step 9 is adding “image” and “alt”. “alt” attribute is used for screen readers to improve accessibility and is displayed if the image fails to load. so to add image and alt attribute you can type “img” element <img src="Your Link To Image/Directory" alt="Text That Describe The Image"> Hope this help!

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