<a href="file.html">
hypertext</a> |
Local Hypertext Link Link to another document in
the same folder/directory. |
<a href="data/file.html">
hypertext</a> |
Local Hypertext Link Link to another document in
a folder/directory named "data" that is inside the directory containing
the calling HTML document |
<a href="../file.html">
hypertext</a> |
Local Hypertext Link Link to another document in
a folder/directory that is one level higher relative to the calling HTML
document |
URL |
Uniform Resource Locator Address for Internet
resources |
<a href="URL">
hypertext</a> |
Internet HyperText Link Link to another Internet
Site, specified by URL |
<a name="xyz">...</a> |
Named Anchor Marks a section of text within a
document with name
"xyz" |
<a href="file.html#xyz">
hypertext</a> |
Link to Named Anchor Jump to a named anchor
within the same or another document |
<a href="url">
<img src="file.gif"
border=0></a> |
Internet HyperGraphic Link Inline image acts as
hyperlink to site specified by URL. Including the
border=0 attribute will suppress the display
of a bounding box around the image |
<a href="mailto:
doe@xyz.edu">... </a>
|
Internet Mail Link Sets up email message to
specified address. See the lesson for other options to use multiple
addresses, cc: addresses, and default subject lines. |
<img src="image.gif"
usemap="#map_name">
<map name="map_name">
<area shape="rect"
coords="x1,y1,x2,y2"
hrEF=URL>
<area shape="rect"
coords="x1,y1,x2,y2"
hrEF=URL>
</map> |
Client-Side Image Map Clickable image map
interpreted by browser.
<map>...</map> can occur
anywhere in this or another HTML file. Coordinates are top left and lower
right corners of rectangular shaped region |
<a href="abc.html"
target="window_name"
</a>
<base
target="window_name"
</a>
|
Open Link in a New Window Opens the link in a
browser window specified by window_name Special values include
_blank for forcing open to a
new window and _self for the
same window. The <BASE...>
tag makes the target effective for all links that follow
it in the HTML code. |