Internal and External links using anchor elements

I’m a little stuck when it comes to the differences between internal and external links.

How would I change this to an internal link? What are the differences? What does it mean by “…add the value footer…?”

<a href=“freecatphotoapp” target="_blank"/cat photos

<footer/Copyright Cat Photo App/footer>

(some things had to be changed to view the command)

Here’s the curriculum to assist anyone trying to help:

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 <footer> element at the bottom of the page.

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.

See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

Note: Backticks are not single quotes.

markdown_Forums


Next time, if you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

1 Like

An “external link” is a website, like https://freecodecamp.org. An “internal link” is an element on your web page.