Step 12
In the previous step you turned the words link to cat pictures
into a link by placing them between opening and closing anchor (a
) tags. You can do the same to words inside of an element, such as a p
element.
In the text of your p
element, turn the words cat photos
into a link to https://freecatphotoapp.com
by adding opening and closing anchor (a
) tags around these words.
My Code
<p>See more cat photos in our gallery.
<a href="https://freecatphotoapp.com">cat photos</a>
</p>
Error
Test
Sorry, your code does not pass. Try again.
Hint
After nesting the anchor (a
) element, the only p
element content visible in the browser should be See more cat photos in our gallery.
Double check the text, spacing, or punctuation of both the p
and nested anchor element.
…