Tag | Explanation | Mode |
---|---|---|
<EM> ... </EM> | Specifies emphasized text. Typically rendered in italics. | Strict |
Tag | Explanation | Mode |
---|---|---|
<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) |
Attribute | Explanation | Mode |
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) |
Tag | Explanation | Mode |
---|---|---|
<FONT> ... </FONT> | Specifies a change in font size or colour. | Strict |
Attribute | Explanation | Mode |
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 |
Tag | Explanation | Mode |
---|---|---|
<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 |
Attribute | Explanation | Mode |
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 |
Tag | Explanation | Mode |
---|---|---|
<FRAME> | Can only appear within a FRAMESET
element.
Embeds another document in a framed HTML document. | Strict |
Attribute | Explanation | Mode |
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 |
Tag | Explanation | Mode | ||||||
---|---|---|---|---|---|---|---|---|
<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 | ||||||
Attribute | Explanation | Mode | ||||||
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:
| 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:
| Strict |
Tag | Explanation | Mode |
---|---|---|
<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 |
Attribute | Explanation | Mode |
ALIGN=LEFT ALIGN=CENTER ALIGN=RIGHT | Specifies the horizontal position of the header in the window. | Strict |
Tag | Explanation | Mode |
---|---|---|
<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 |
Tag | Explanation | Mode |
---|---|---|
<HR> | Renders a horizontal rule. | Strict |
Attribute | Explanation | Mode |
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) |
Tag | Explanation | Mode |
---|---|---|
<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 |
Tag | Explanation | Mode |
---|---|---|
<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 |
Tag | Explanation | Mode | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
<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 | ||||||||
Attribute | Explanation | Mode | ||||||||
ALIGN=TOP ALIGN=MIDDLE ALIGN=BOTTOM | Specifies how the frame should be aligned with the text:
| 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) |
Tag | Explanation | Mode | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
<IMG> | Specifies an image to be displayed inlined with the text. | Strict | ||||||||
Attribute | Explanation | Mode | ||||||||
ALIGN=TOP ALIGN=MIDDLE ALIGN=BOTTOM | Specifies how the image should be aligned with the text:
| 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 |
Tag | Explanation | Mode | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<INPUT> | Can only appear within a FORM element Defines an input field in a form. | Strict | ||||||||||||||||||||||
Attribute | Explanation | Mode | ||||||||||||||||||||||
TYPE=CHECKBOX TYPE=HIDDEN TYPE=IMAGE TYPE=PASSWORD TYPE=RADIO TYPE=RESET TYPE=SUBMIT TYPE=TEXT | Defines the type of input field:
| 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.
| Strict |
Tag | Explanation | Mode |
---|---|---|
<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 |
Attribute | Explanation | Mode |
PROMPT="prompt" | Defines the propmt to use. Default is
This is a searchable index. Enter keywords: | Strict |