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 110 111 112 113 114 115 116 117 118
|
<!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>META - Meta-information</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>META - Meta-information</H1>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH>
<TD VALIGN=TOP><META NAME=<CODE>string</CODE> CONTENT=<CODE>string</CODE>><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH>
<TD VALIGN=TOP>HTTP-EQUIV=<CODE>string</CODE>|NAME=<CODE>string</CODE>, <B>CONTENT=<CODE>string</CODE></B><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>
The META tag is used to convey meta-information about the document, but
can also be used to specify headers for the document. You can use either
HTTP-EQUIV or NAME to name the meta-information, but CONTENT must be used
in both cases. By using HTTP-EQUIV,
a server <EM>should</EM> use the name indicated as a header, with the
specified CONTENT as its value. For example,
<PRE>
<META HTTP-EQUIV="Expires" CONTENT="Tue, 04 Dec 1993 21:29:02 GMT">
<META HTTP-EQUIV="Keywords" CONTENT="Nanotechnology, Biochemistry">
<META HTTP-EQUIV="Reply-to" CONTENT="dsr@w3.org (Dave Raggett)">
</PRE>
<P>
The server should include the following response headers when the
document is requested:
<PRE>
Expires: Tue, 04 Dec 1993 21:29:02 GMT
Keywords: Nanotechnology, Biochemistry
Reply-to: dsr@w3.org (Dave Raggett)
</PRE>
<P>
Popular uses for META include:
<DL>
<DT><META NAME="generator" CONTENT="Some program">
<DD>This indicates the program used to generate this document. It is often
the name of the HTML editor used.
<DT><META NAME="author" CONTENT="Name">
<DD>This indicates the name of the author.
<DT><META NAME="keywords" CONTENT="keyword keyword keyword">
<DD>Provides keywords for search engines such as Infoseek or Alta Vista.
These are added to the keywords found in the document itself. If you
insert a keyword more than seven times here, the whole tag will be
ignored!
<DT><META NAME="description" CONTENT="This is a site">
<DD>Search engines which support the above tag will now display the
text you specify here, rather than the first few lines of text from
the actual document when the document shows up in a search result. You
have about 1,000 characters for your description, but not all these
will be used.
<DT><META HTTP-EQUIV="refresh" CONTENT="n; URL=http://foo.bar/">
<DD>This is a so-called "meta refresh", which on certain browsers causes
the document mentioned in the URL to be loaded after <I>n</I> seconds.
This can be used for slide shows or for often-changing information, but
has some drawbacks. In particular, if you use a value of zero seconds,
the user can no longer go "Back" with his back button. He will be
transferred to the specified URL, and when he presses "back" there,
he will go back to the document with the refresh, which immediately
redirects him to the document he tried to get away from.
<DT><META HTTP-EQUIV="expires" CONTENT="Tue, 20 Aug 1996 14:25:27 GMT">
<DD>This indicates that the document containing this META tag will
expire at this date. If the document is requested after this date,
the browser should load a new copy from the server, instead of using
the copy in its cache.
</DL>
<H2>Notes:</H2>
<UL>
<LI>Not all servers use the information from META tags to generate
headers, although some browsers will treat what they find in here like
it was a header.
<LI>The "keywords" and "description" values are currently only used
by <A HREF="http://altavista.digital.com/cgi-bin/query?pg=h&what=web#meta">Alta
Vista</A> and <A
HREF="http://guide.infoseek.com/AddUrl?pg=DCaddurl.html&sv=IS&lk=lcd">Infoseek</A>.
</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>
|