SPEED

| A | B | C | D | E | F | H | I |

| L | M | O | P | S | T | U | ? |

FINDER
Any comments:
e-mail me, feedback or show your appreciation


The HTML Elements

<a> anchor

An anchor marks the beginning and/or end of a hypertext link.


<address>

A logical style used when providing address information, often at the top or bottom of the document.


<b> bold

A physical style for displaying text in a bold font. See also <strong>.


<basefont>

Used in conjunction with <font> to set a default font size. Always used with the size attribute.


<blink>

Flashes text on and off.


<blockquote>

Allows text quoted from another source to be rendered specially. Usually left and right indented. See also <cite>.


<body>

The <body> element contains all the information which is part of the document, as opposed to information about the document, which should be in the <head>. The <body> tag should be placed directly after the closing head tag, </head>. The closing body tag, </body> should be placed as the pen-ultimate line of the document, directly before the </html> tag.


<br> break

Forces a line break - similar to a hard return on a word processor.


<caption> table caption

Click here to learn all about creating tables.


<center>

Center justifies text and puts tables, graphics, etc. in the centre of the page.


<cite>

A logical style for displaying a citation or quote. Usually displayed in italic. See also <blockquote>.


<code>

A logical style for displaying examples of code. Usually displayed in a fixed-width font. See also <TT>and <PRE>.


<dd> definition list definition

Described on a separate page dedicated to lists.


<dir> directory list

Described on a separate page dedicated to lists.


<dl> definition list

Described on a separate page dedicated to lists.


<dt> definition list term

Described on a separate page dedicated to lists.


<em> emphasis

A logical style used to give emphasis to a section of text. Usually rendered in italic. See also: <strong>.


<font>

Used to change the look of the text.


<form>

Click here to learn all about creating forms.


<h1>,<h2>,<h3>,<h4>,<h5>,<h6> heading style

Renders text as a heading, the rendering depending on the level of heading selected. Headings are automatically spaced from the body text.


<head>

The head element contains all the information about the document. It does not contain any text which is part of the document, this is in the body. The <head> would follow the <html> tag and precede the <body> element.
A shell document would therefore follow the following format:


<hr> horizontal rule

This produces a horizontal line across the screen. By default the line will be narrow and span the screen within the current indents, eg. those created by a <blockquote> or list tag.


<html>

Placed at the beginning and end of the document to declare the type of document. A shell document would therefore follow the following format:


<i> italic

A physical style for displaying text in an italic or slanted font. See also <em>.


<img> image

Used to place an image or graphic on the screen.


<input> form input box

Click here to learn all about creating forms.


<li> bullet

See lists.


lists <ol>, <ul>, <li>, <dt>, <dd>

There are many types of lists that can be created. For this reason, I have dedicated a separate page with full details of lists.


<menu> menu list

Described on a separate page dedicated to lists.


<ol> ordered list

Described on a separate page dedicated to lists.


<option> form list item

Click here to learn all about creating forms.


<p> paragraph

Used to indicate a new paragraph. Automatically inserts a blank line before the new paragraph.


<pre> pre-formatted text

The most useful application of this element is for displaying extracts of programming code as the text is rendered as a fixed-width font and the <br> tag is not necessary to cause a line-break. It is sometimes used to display text in a tabular or column format, as all spaces typed in the HTML code are displayed by the browser. Combined with the fixed-width font, this facilitates the alignment of text.

I do not recommend the use of <pre> for formatting a few words at a time, as unpredicable results are occasionly produced. Use <code> or <tt> as an alternative.


<select> form list box

Click here to learn all about creating forms.


<strong>

A logical style used to give strong emphasis to a section of text. Usually rendered in bold. See also: <em>.


<sub> subscript

A physical style for displaying subscripted text.


<sup> superscript

A physical style for displaying superscripted text.


<table>

Click here to learn all about creating tables.


<td> table data

Click here to learn all about creating tables.


<th> table heading

Click here to learn all about creating tables.


<title>

The title element should contain a complete one-line summary of the document, ie. "Introduction" is not sufficient, but "HTML Commands Guide: Introduction" would suffice. The title of a loaded document appears at the top of a Netscape window. When coding, the title should be placed within the <head> tags.
A shell document would therefore follow the following format:


<tr> table row

Click here to learn all about creating tables.


<tt> typewriter text

A physical style for displaying text in a fixed-width font.


<ul> unordered list

Described on a separate page dedicated to lists.





wcons@cix.compulink.uk ©1996 Richard Rutter