HTML Links & Relative Links Flashcards
What HTML tag is used to link to another website?
< a > ; also called anchor tag
What is an absolute URL?
A URL that starts with the domain name of the site and followed by the path to a specific page.
What is a relative URL?
A URL that does not have the domain name in its pathway because this URL links to a pathway in its own domain.
How do you indicate the relative link to a parent directory?
../
How do you indicate the relative link to a child directory?
childfoldername/filename
How do you indicate the relative link to a grandparent directory?
../../
How do you indicate the relative link to the same directory?
just the file name (and ./filename is also acceptable)
How do you indicate the relative link to a grandchild directory?
childfoldername/grandchildfoldername/filename