1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<!-- Thanks for reading the source of this document. Hope you enjoy -->
<!-- what you find here. Please let me know if you find any errors. -->
<HEAD>
<TITLE>LINK - Site structure</TITLE>
<META NAME="description" CONTENT="Wilbur is the name for the next HTML standard (3.2). Here you can find all the tags in this proposal, including tips on usage and limitations.">
<META NAME="keywords" CONTENT="html authoring, reference, wilbur, tag overview">
<META NAME="generator" CONTENT="Orb v1.3 for OS/2">
<META NAME="author" CONTENT="Arnoud Engelfriet">
<LINK REV="made" HREF="mailto:galactus@htmlhelp.com" TITLE="Wilbur feedback">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080"
ALINK="#000080">
<H1 ALIGN=CENTER>LINK - Site structure</H1>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH>
<TD VALIGN=TOP><LINK REL=<CODE>string</CODE> HREF=<CODE>URL</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH>
<TD VALIGN=TOP>REL=<CODE>string</CODE>, REV=<CODE>string</CODE>, <B>HREF=<CODE>URL</CODE></B>, TITLE=<CODE>string</CODE><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH>
<TD VALIGN=TOP>None (<A HREF="../../../glossary/glossary.html#empty">Empty</A>).<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH>
<TD VALIGN=TOP><A HREF="../head/head.html">HEAD</A>.<BR></TD>
</TR>
</TABLE>
<P>
LINK is used to indicate relationships between documents. There are two
possible relationships: REL indicates a normal relationship to the
document specified in the URL. REV indicates a reverse relationship. In
other words, the <EM>other</EM> document has the indicated relationship
with this one. The TITLE attribute can be used to suggest a title for the
referenced URL or relation.
<P>
Some possible values for REL and REV:
<DL>
<DT>REV="made"
<DD>Indicates the creator of the document. Usually the URL is a mailto:
URL with the creator's e-mail address. Advanced browsers will now let
the reader comment on the page with just one button or keystroke.
<DT>REL="stylesheet"
<DD>This indicates the location of the appropriate style sheet for the
current document.
</DL>
The following LINK tags allow advanced browsers to automatically generate
a navigational buttonbar for the site. For each possible value, the
URL can be either absolute or relative.
<DL>
<DT>REL="home"
<DD>Indicates the location of the homepage, or starting page in this site.
<DT>REL="toc"
<DD>Indicates the location of the table of contents, or overview of this site.
<DT>REL="index"
<DD>Indicates the location of the index for this site. This doesn't have
to be the same as the table of contents. The index could be alphabetical,
for example.
<DT>REL="glossary"
<DD>Indicates the location of a glossary of terms for this site.
<DT>REL="copyright"
<DD>Indicates the location of a page with copyright information for
information and such on this site.
<DT>REL="up"
<DD>Indicates the location of the document which is logically directly
above the current document.
<DT>REL="next"
<DD>Indicates the location of the next document in a series, relative
to the current document.
<DT>REL="previous"
<DD>Indicates the location of the previous document in a series, relative
to the current document.
<DT>REL="help"
<DD>Indicates the location of a help file for this site. This can be
useful if the site is complex, or if the current document may require
eplanations to be used correctly (for example, a large fill-in form).
</DL>
<H2>Notes:</H2>
<UL>
<LI>Support for the LINK tag is currently very limited, although it
may be useful for site maintenance.
</UL>
<HR>
<CENTER>
<P>
<B><IMG SRC="../icon/wdglogo-small.gif" WIDTH=105 HEIGHT=40 ALT="Web Design Group" ALIGN=RIGHT></B><BR>
<A HREF="../index.html" TITLE="Index for Wilbur">Wilbur index</A> ~
<A HREF="../overview.html" TITLE="Overview of HTML 3.2 tags">Tag overview</A> ~
<A HREF="mailto:galactus@htmlhelp.com" TITLE="Wilbur reference feedback">Feedback</A>
<P>
<SMALL>
Copyright © 1997 <A HREF="http://www.stack.nl/%7Egalactus/">Arnoud "Galactus" Engelfriet</A>.
</SMALL>
</CENTER>
</BODY>
</HTML>
|