Tutorial 2 Flashcards
From the ____, you add links to other pages in the site, defining the site’s overall structure
home page
You assign each anchor its own anchor name, using the ____ attribute.
name
To create a link to an anchor, you use the ____ attribute.
href
You link to an id or anchor using the anchor name preceded by the ____ symbol.
#
The general syntax to create a hypertext link is ____.
<a>content</a>
When referencing a file located in a different folder than the link tag, you must include the ____ for the file.
path
Which of the following is an HTML-supported kind of path?
absolute and relative
A(n) ______ path provides a precise location for a file.
absolute
With HTML, absolute pathnames begin with a _______.
slash
Which of the following absolute pathnames is interpreted as “the parks.htm file is in the extra folder, which is a subfolder of the /tutorial02/case1 folder”?
/tutorial02/case1/extra/parks.htm
A file named “chem.htm” in the tutorial02 folder on drive C of your computer has what absolute pathname?
/C|/tutorial02/chem.htm
Most Web designers use ____ pathnames in their hypertext links.
relative
To reference a file in a folder directly above the current folder in the folder hierarchy, relative pathnames use two ____.
periods
Which of the following relative pathnames is interpreted as “the chem.htm file is in the tutorial subfolder one level up in the folder tree from the current file”?
../tutorial/chem.htm
Which of the following relative pathnames is interpreted as “the rock.htm file is in the same folder as the current file”?
rock.htm