(logo)  AWeb supported HTML

Tags (E-J)

The Mode column in the tables below contains the HTML mode that recognizes the tag or attribute. Elements recognized in strict mode will also be recognized in tolerant mode, but elements marked as tolerant will not be recognized in strict mode.

EM

TagExplanationMode
<EM> ... </EM> Specifies emphasized text. Typically rendered in italics. Strict

EMBED

TagExplanationMode
<EMBED> ... </EMBED> Specifies an embedded object to display inlined with the text. The OBJECT element should be used instead because it offers more flexibility. Tolerant (NS)
AttributeExplanationMode
HEIGHT=nn
WIDTH=nn
Specifies the height and the width of the object in pixels. AWeb uses this to reserve enough space for the object, so that once it is loaded no reformatting of the page is needed. Tolerant (NS)
NAME="name" Specifies a name for the object. Tolerant (NS)
SRC="url" Specifies the address of the object. See A for details. Tolerant (NS)
name=value All other attributes are passed as (name, value) pairs to the object. Tolerant (NS)

FONT

TagExplanationMode
<FONT> ... </FONT> Specifies a change in font size or colour. Strict
AttributeExplanationMode
COLOR=#rrggbb
COLOR=colourname
Specifies the colour to render the text in.
See colour specifications for a list of valid names.
Strict
SIZE=nn
SIZE=+nn
SIZE=-nn
Specifies the font size.

If nn is given, it is an absolute size. Valid sizes are 1 to 7, 1 being the smallest and 7 the largest.

If +nn or -nn is given, it is a change relative to the current BASEFONT or Hn size. Valid range is -6 to +6, but the resulting font size will be adjusted to fall within the range 1 to 7. Note that relative font size changes are not cumulative.

Strict

FORM

TagExplanationMode
<FORM> ... </FORM> Specifies a fill-in form. The form should contain one or more BUTTON, INPUT, SELECT or TEXTAREA elements that define the form fields. Strict
AttributeExplanationMode
ACTION="url" Specifies the address to be used to carry out the form's action. Default is the form's address. Strict
METHOD=GET
METHOD=POST
Specifies how the form data should be sent to the action address. METHOD=GET includes the arguments in a URL. METHOD=POST sends the data using a HTTP post transaction. Strict
ENCTYPE="type" Specifies what sort of encoding should be used when sending the form data. Valid encoding types are: "application/x-www-form-urlencoded" (default) and "multipart/form-data". Strict
TARGET="name" The name of the frame where to display the result after submitting the form. If the name does not exist, a new window will be opened.

See A for a list of magic target names.

Strict
NAME="name" Specifies the name of this form, for use in scripts. Strict
ONRESET="script"
ONSUBMIT="script"
Standard JavaScript event handlers. Strict

FRAME

TagExplanationMode
<FRAME> Can only appear within a FRAMESET element.

Embeds another document in a framed HTML document.

Strict
AttributeExplanationMode
BORDER=YES
BORDER=NO
Specifies if the frame should have a border or not. See also the FRAMEBORDER attribute. Tolerant (NS)
FRAMEBORDER=nn Specifies the thickness of the border around the frame. FRAMEBORDER=0 means no border. Strict
HEIGHT=nn
HEIGHT=nn%
Only valid when used as embedded object.
Specifies the height of the frame in pixels or as a percentage of the window height.
Strict
MARGINHEIGHT=nn
MARGINWIDTH=nn
Specifies the vertical and horizontal margins around the contents within the frame, in pixels. Strict
NAME="name" Gives the frame a name. This name can be used in the TARGET attribute of the A and BASE tags.

Names must begin with an alphanumeric character.

Strict
NORESIZE Specifies that the frame has a fixed width.

Note that with AWeb, you can always resize the frame regardless of this attribute.

Strict
SCROLLING=YES
SCROLLING=NO
SCROLLING=AUTO
Specifies if scrollers are allowed for this frame. If scrollers are allowed, they are only displayed if the contents doesn't fit entirely in the frame. If not allowed, no scrollers will be displayed even if the document doesn't fit.

Default is to allow scrollers. AUTO is a synonym for YES.

Strict
SRC="url" Specifies the address of the document to display in the frame. See A for details. Strict

FRAMESET

TagExplanationMode
<FRAMESET> ... <FRAMESET/> Subdivides the browser window in two or more subwindows.

The FRAMESET element should contain one or more FRAME elements that define the documents to display in the subwindows. Other FRAMESET elements may be included to achieve a more complex subdivision.

A document containing a FRAMESET element should not contain a BODY. For compatibility with browsers that don't support frames, a NOFRAMES element may be included in the document.

Strict
AttributeExplanationMode
BORDER=YES
BORDER=NO
Specifies if the included frames should have borders or not. See also the FRAMEBORDER attribute. Tolerant (NS)
COLS="spec,spec,..." Specifies the way the frameset should be divided into columns. Each "spec" can be one of the following:
nwidth of the column in number of pixels.
n%width of the column as percentage of the window width.
n*relative width of the remaining columns. The remainder of the window will be divided over these columns. The number may be omitted.
Strict
FRAMEBORDER=nn Default thickness for the borders of the included frames, in pixels. FRAMEBORDER=0 means no borders. Tolerant (MS)
FRAMESPACING=nn Spacing between the included frames, in pixels. Tolerant (MS)
ROWS="spec,spec,..." Specifies the way the frameset should be divided into rows. Each "spec" can be one of the following:
nheight of the row in number of pixels.
n%height of the row as percentage of the window height.
n*relative height of the remaining rows. The remainder of the window will be divided over these rows. The number may be omitted.
Strict

H1..H6

TagExplanationMode
<H1> ... </H1>
  :
<H6> ... </H6>
Specifies a heading. There are six levels of heading that may be rendered in different fonts, sizes and styles. H1 is the most important heading, H6 the least important. Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Specifies the horizontal position of the header in the window. Strict

HEAD

TagExplanationMode
<HEAD> ... </HEAD> Specifies the document header section. This section contains meta-information about the document, like the TITLE. Each HTML document can have at most 1 HEAD.

Both the start and end tags are optional.

Strict

HR

TagExplanationMode
<HR> Renders a horizontal rule. Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Specifies the location where to render a short rule in the window. Default is centered within the window width. Strict
NOSHADE Renders the rule as a solid line or block, with no 3-d effects. Strict
SIZE=nn Specifies the vertical size of the ruler, measured in pixels. Default is 2 pixels. Strict
WIDTH=nn%
WIDTH=nn
Specifies the width of the ruler, either in a percentage of the window width, or as a number of pixels. Default is a width of 100%. Strict
COLOR=#rrggbb
COLOR=colourname
Specifies the colour to render the rule in. This attribute implies the NOSHADE attribute.
See colour specifications for a list of valid names.
Tolerant (MS)

HTML

TagExplanationMode
<HTML> ... </HTML> Specifies a HTML document. Each HTML document should begin with <HTML> and end with </HTML>.

Both the start and end tags are optional.

Strict

I

TagExplanationMode
<I> ... </I> Renders text in italics. Usually it is better to use one of the logical styles (like EM) instead of phisycal styles like I. Strict

IFRAME

TagExplanationMode
<FRAME> ... </IFRAME> Embeds another document in a HTML document.

If the browser doesn't support frames, or is configured not to use frames, the content of the IFRAME element is displayed, otherwise it is ignored.

Strict
AttributeExplanationMode
ALIGN=TOP
ALIGN=MIDDLE
ALIGN=BOTTOM
Specifies how the frame should be aligned with the text:
ALIGNMeaning
TOPthe top of the frame aligns with the top of the tallest element in the line
MIDDLEthe middle of the frame aligns with the text baseline
BOTTOMthe bottom of the frame aligns with the text baseline
Strict
ALIGN=LEFT
ALIGN=RIGHT
Specifies that the frame is a floating frame. It is flushed to the current left or right margin, and the text will flow around it. Strict
FRAMEBORDER=nn Specifies the thickness of the border around the frame. FRAMEBORDER=0 means no border. Strict
HEIGHT=nn
HEIGHT=nn%
Specifies the height of the frame in pixels or as a percentage of the window height. Strict
HSPACE=nn
VSPACE=nn
Specifies a margin around the frame for floating frames. Without margin the text will be placed directly adjacent to the frame. Tolerant (MS)
MARGINHEIGHT=nn
MARGINWIDTH=nn
Specifies the vertical and horizontal margins around the contents within the frame, in pixels. Strict
NAME="name" Gives the frame a name. This name can be used in the TARGET attribute of the A and BASE tags.

Names must begin with an alphanumeric character.

Strict
SCROLLING=YES
SCROLLING=NO
SCROLLING=AUTO
Specifies if scrollers are allowed for this frame. If scrollers are allowed, they are only displayed if the contents doesn't fit entirely in the frame. If not allowed, no scrollers will be displayed even if the document doesn't fit.

Default is to allow scrollers. AUTO is a synonym for YES.

Strict
SRC="url" Specifies the address of the document to display in the frame. See A for details. Strict
WIDTH=nn
WIDTH=nn%
Specifies the width of the frame in pixels or as a percentage of the window width. Tolerant (MS)

IMG

TagExplanationMode
<IMG> Specifies an image to be displayed inlined with the text. Strict
AttributeExplanationMode
ALIGN=TOP
ALIGN=MIDDLE
ALIGN=BOTTOM
Specifies how the image should be aligned with the text:
ALIGNMeaning
TOPthe top of the image aligns with the top of the tallest element in the line
MIDDLEthe middle of the image aligns with the text baseline
BOTTOMthe bottom of the image aligns with the text baseline
Strict
ALIGN=LEFT
ALIGN=RIGHT
Specifies that the image is a floating image. It is flushed to the current left or right margin, and the text will flow around it. Strict
ALT="text" Specifies the text to be displayed when the image isn't loaded (yet). Strict
BORDER=nn Specifies the thickness of the border. BORDER=0 means no border. Strict
HEIGHT=nn
WIDTH=nn
Specifies the height and the width of the image in pixels. AWeb uses this to reserve enough space for the image, so that once it is loaded no reformatting of the page is needed. Strict
HSPACE=nn
VSPACE=nn
Specifies a margin around the image for floating images. Without margin the text will be placed directly adjacent to the image. Strict
ISMAP Specifies that the image is a clickable map. The image must be contained within a A element. Strict
SRC="url" Specifies the address of the image. See A for details. Strict
USEMAP="url" Defines this image as a client-side image map. The url must contain a fragment name (introduced by the # character) and must point to a MAP element. The MAP element may be in the same document or in another document. Strict
NAME="name" Specifies the name of this image, for use in scripts. Strict
ONABORT="script"
ONERROR="script"
ONLOAD="script"
Standard JavaScript event handlers.

For animated GIF images, the ONLOAD event handler is executed every time the animation restarts with the first frame.

Strict

INPUT

TagExplanationMode
<INPUT> Can only appear within a FORM element
Defines an input field in a form.
Strict
AttributeExplanationMode
TYPE=CHECKBOX
TYPE=HIDDEN
TYPE=IMAGE
TYPE=PASSWORD
TYPE=RADIO
TYPE=RESET
TYPE=SUBMIT
TYPE=TEXT
Defines the type of input field:
TYPEMeaning
BUTTONA general purpose button
CHECKBOXA simple checkbox, on or off
FILEA file upload selection field
HIDDENInvisible field, but will be sent with the form data
IMAGEClickable image, much like image maps
PASSWORDOne-line text entry, but typed text will be unreadable
RADIORadiobuttons, one choice out of many
RESETButton to reset all fields to their initial state
SUBMITButton to send the form data
TEXTOne-line text entry, this is the default type
A general purpose button (TYPE=BUTTON) will generally have an ONCLICK event handler specified to define the action to be taken when the user clicks the button.
Strict
ALIGN=TOP
ALIGN=MIDDLE
ALIGN=BOTTOM
Specifies the alignment of an IMAGE field. Strict
CHECKED Specifies that a CHECKBOX or RADIO button should be initially checked. Strict
MAXLENGTH=nn Specifies the maximum number of characters that can be typed in a TEXT or PASSWORD field. Strict
NAME="name" Gives this field a name. Fields without a name will not be included in the form data sent. Strict
SRC="url" Specifies the source URL of the image for an IMAGE type field. Strict
SIZE=nn Specifies the size of the input box for FILE, TEXT and PASSWORD fields, in characters. Strict
VALUE="value" For BUTTON, CHECKBOX, RADIO, HIDDEN and SUBMIT this specifies the value (data) to be included if the form is sent.
For TEXT and PASSWORD this specifies the initial value of the input box.
For BUTTON, SUBMIT and RESET this specifies the button label.
For FILE this is the initial path and file to be used when popping up the file requester.
Strict
ONBLUR="script"
ONCHANGE="script"
ONCLICK="script"
ONFOCUS="script"
ONSELECT="script"
Standard JavaScript event handlers.

Event handlerValid for types
ONBLURBUTTON, CHECKBOX, FILE, PASSWORD, RADIO, RESET, SUBMIT, TEXT
ONCHANGEFILE, TEXT
ONCLICKBUTTON, CHECKBOX, RADIO, RESET, SUBMIT
ONFOCUSBUTTON, CHECKBOX, FILE, PASSWORD, RADIO, RESET, SUBMIT, TEXT
ONSELECTTEXT

Strict

ISINDEX

TagExplanationMode
<ISINDEX> Specifies that this page is a searchable index.

Note: The HTML definition states that this tag can only be used within a HEAD element. Because there are many pages that has this tag in the document BODY, AWeb does not impose this restriction, not even in strict mode!

Strict
AttributeExplanationMode
PROMPT="prompt" Defines the propmt to use. Default is
This is a searchable index. Enter keywords:
Strict


Back to overview
More HTML tags: A-D, K-S, T-Z

<- Back to index.