greatg
1
Change your external link to an internal link by changing the href attribute to “#footer” and the text from “cat photos” to “Jump to Bottom”.
Remove the target="_blank" attribute from the anchor tag since this causes the linked document to open in a new window tab.
Then add an id attribute with a value of “footer” to the element at the bottom of the page.
If you are wondering what the code looks like I have added it below just for clarification purposes.
<footer id="footer">Text Here</footer>
1 Like
greatg
3
thank you, have got that one.
please, kindly hep me out with this: Create an a element that links to http://freecatphotoapp.com and has “cat photos” as its anchor text.
Sure I would be glad to help. The first thing you would need to do is create an href or link. I have done so below:
<a href="">Text Goes Here</a>
Now you will need to change the href value to point to the url that you are given in the challenge. So it looks like this:
<a href="http://freecatphotoapp.com">Text Goes Here</a>
Lastly you will change the text to read “Cat Photos” as the link or anchor text. So your final will look like this:
<a href="http://freecatphotoapp.com">Cat Photos</a>
Hope this helps!