HTML Links & Relative Links Flashcards

1
Q

What HTML tag is used to link to another website?

A

< a > ; also called anchor tag

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an absolute URL?

A

A URL that starts with the domain name of the site and followed by the path to a specific page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a relative URL?

A

A URL that does not have the domain name in its pathway because this URL links to a pathway in its own domain.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you indicate the relative link to a parent directory?

A

../

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you indicate the relative link to a child directory?

A

childfoldername/filename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you indicate the relative link to a grandparent directory?

A

../../

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you indicate the relative link to the same directory?

A

just the file name (and ./filename is also acceptable)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you indicate the relative link to a grandchild directory?

A

childfoldername/grandchildfoldername/filename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly