The paragraph (P) element represents a paragraph. The exact rendering (indentation, leading, etc) of this element is not defined and may be a function of other tags, style sheets, etc.
Example:
<H1>This Heading Precedes the Paragraph</H1> <P>This is the text of the first paragraph. <P>This is the text of the second paragraph. Although you do not need to start paragraphs on new lines, maintaining this convention facilitates document maintenance. <P>This is the text of a third paragraph.
The preformatted text element PRE presents sections in fixed-width font, and so is suitable for text that has been formatted for a teletype.
The PRE element may be used with the optional WIDTH attribute, which is a Level 1 feature. The width attribute specifies the maximum number of characters for a line and allows the presentation system to select a suitable font and indentation. If the WIDTH attribute is not present, a width of 80 is assumed. Where WIDTH is supported, it is recommended that at least widths of 40, 80 and 132 characters be presented optimally, with other widths being rounded up.
Within preformatted text:
<PRE WIDTH="80"> This is an example line. </PRE>
The line break tag (<BR>) specifies that a new line must be started at the given point. A new line indents the same as that of line-wrapped text.
An example of using the line break element is:
<P>Pease porridge hot<BR> Pease porridge cold<BR> Pease porridge in the pot<BR> Nine days old.
A horizontal rule tag (<HR>) is a divider between sections of text such as a full width horizontal rule or equivalent graphic. The horizontal rule is typically used for separating heading information (when more than just a heading) from content, etc.
<H1>Name of Applicant</H1> <HR> <H2>Professionnnal Experience <P>Text describing professional experience.
The META element is used within the head element to embed document meta-information not defined by other HTML elements. Such information can be extracted by servers/clients for use in identifying, indexing, and cataloging specialized document meta-information.
Although it is generally preferable to use named elements which have well-defined semantics for each type of meta-information (e.g. title), this element is provided for situations where strict SGML parsing is necessary and the local DTD is not extensible.
In addition, HTTP servers can read the content of the document HEAD to generate response headers corresponding to any elements defining a value for the attribute HTTP-EQUIV. This provides document authors a mechanism (not necessarily the preferred one) for identifying information which should be included in the response headers for an HTTP request.
The attributes of the META element are:
<META HTTP-EQUIV="Expires" CONTENT="Tue, 04 Dec 1993 21:29:02 GMT"> <META HTTP-EQUIV="Keywords" CONTENT="Fred, Barney"> <META HTTP-EQUIV="Reply-to" content="fielding@ics.uci.edu (Roy Fielding)"> Expires: Tue, 04 Dec 1993 21:29:02 GMT Keywords: Fred, Barney Reply-to: fielding@ics.uci.edu (Roy Fielding)When the HTTP-EQUIV attribute is not present, the server should not generate an HTTP response header for this meta-information; e.g.,
<META NAME="IndexType" content="Service">Do not use the META element to define information that should be associated with an existing HTML element. Example of an inappropriate use of the META element:
<meta name="Title" content="The Etymology of Dunsel">Do not name an HTTP-EQUIV equal to a response header that should normally only be generated by the HTTP server. Example names that are inappropriate include "Server", "Date", and "Last-modified" -- the exact list of inappropriate names is dependent on the particular server implementation. It is recommended that servers ignore any META elements which specify HTTP-equivalents which are equal (case-insensitively) to their own reserved response headers.
Generated with WebMaker