--- id: bad88fee1348bd9aedf08816 title: Link to Internal Sections of a Page with Anchor Elements challengeType: 0 videoUrl: 'https://scrimba.com/p/pVMPUv/cyrDRUL' forumTopicId: 301098 dashedName: link-to-internal-sections-of-a-page-with-anchor-elements --- # --description-- `a` (*anchor*) elements can also be used to create internal links to jump to different sections within a webpage. To create an internal link, you assign a link's `href` attribute to a hash symbol `#` plus the value of the `id` attribute for the element that you want to internally link to, usually further down the page. You then need to add the same `id` attribute to the element you are linking to. An `id` is an attribute that uniquely describes an element. Below is an example of an internal anchor link and its target element: ```html Contacts ...

Contacts

``` When users click the Contacts link, they'll be taken to the section of the webpage with the **Contacts** header element. # --instructions-- 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 `