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
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
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.
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.