Hyperlinks Flashcards
Which of the following is an example of how to add a hyperlink using HTML?
<a>Home</a>
What element is used to create an internal bookmark (or link) within a webpage?
anchor
Examine the following link and identify if it is an internal link, relative link, or absolute link. <a>Back to Top</a>
internal link/bookmark
Examine the following link and identify if it is an internal link, relative link, or absolute link. <a>Home</a>
relative link
If you want to create a bookmark to a specific <div> element within a webpage, you must include the ___ attribute within that <div> tag.
id
To create an internal link or bookmark, you must use an anchor element with the ___ attribute that points to the bookmark value.
href
Examine the following link and identify if it is an internal, relative, or absolute link. <a>WGU</a>
absolute link
When creating a link to a bookmark, the # symbol used within the href value is known as a ___
hash
When the href attribute value used the hash symbol (#), the browser will look for a location within what document?
the current document
When the href attribute value does NOT use the hash symbol (#), the browser will look for a document located ___ ?
in an external document
True or False? When adding an anchor element to a webpage, you cannot link it to a PDF document.
False
True or False? You can wrap an image with an anchor element.
True