Learn HTML by Building a Cat Photo App - Step 4

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

<p>Click here to view more cat photos.</p>
  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <!-- TODO: Add link to cat photos. -->
  <p>Click here to view more cat photos.</p>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

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

Link to the challenge:

what i am doing wrog?

<p>Click here to view more cat photos.</p>

TODO: Add link to cat photos

if you compare the comment you added to the TODO line you were asked to add you will see two differences. (check carefully capitalization and punctuation).
Make sure your line is an exact match or the test will fail.

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

Click here to view more cat photos.

TODO: Add link to cat photos.

**Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <p>Click here to view more cat photos.</p>
  <!--This is a comment-->
  <p>TODO: Add link to cat photos.</p>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

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

Link to the challenge:

The text “TODO: ADD link to cat photos.” was suppose to go in the comment above the original p element you changed.

h1>CatPhotoApp

Cat Photos


Click here to view more cat photos.



TODO: Add link to cat photos.


still show that is wrong

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

p>Click here to view more cat photos.<p/>
<!--This is a comment-->

TODO: Add link to cat photos.

`
what i doing wrong

the a tag is used to link webpages together. so for example if you have a webpage which when you click it, takes you to google.com. You can do something like this:

// destination-link               link text
          |                           |
<a href="https://google.com"> a link to google </a>

even though the user will only see the text a link to google and when someone clicks it, the user will be taken to the google’s website.

Here in the same way, you need to a link to https://freecatphotoapp.com with the text “cat photos” in this challenge.

Tell us what’s happening:
Describe your issue in detail here.
Good evening stuck on step 4 it says that i put wrong spelling but i check everything ok

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <p>Click here to view more cat photos.</p>
  <!--TODO: Add link to cat photos.-->

</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

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

Link to the challenge:

Heyo! Try if this works: remove the period at the end of the <!–TODO line
:smiley: hopefully this works!

thanks for help it is works )

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