Generated: Monday, November 14, 2011, 09:09:56Copyright ©2011, Kurt NørmarkThe local LAML software home page

Reference Manual of the LAML surface mirror of the HTML4.0 elements

Kurt Nørmark ©    normark@cs.auc.dk    Department of Computer Science    Aalborg University    Denmark    

Source file: lib/html4.0-loose/surface.scm
LAML Version 38.0 (November 14, 2011, full)

This is an accurate mirror of HTML 4.0 (loose) on surface form. A surface form has a very flexible syntactic composition. Use the surface forms when you write an HTML document in LAML syntax. Each function in this file mirrors and generates an HTML tag. The general form of a surface mirror function is
   (tag 'a1 "v1" 'a2 "v2" ... 'am "vm" contents-1 contents-2 ... contents-n). 
where, in the most common case, contents-1, contents-2 through contents-n are strings (verbatim or the result of other mirror functions) which are string-appended to form the contents of the element.

From LAML version 16.2 contents-i (i from 1 to n) can also be flat, proper lists of strings which automatically are string-appended to form a single content string. From LAML version 17.0, the mirror functions accept lists nested to an arbitrary level. Such lists are processed recursively. It means that you can pass lists of content constituents, or even lists with attribute names and values to the mirror functions.

The attribute names must be symbols, and the attribute values have to be strings.

The expression from above corresponds to the HTML tag

   <tag a1 "v1" a2 "v2" ... am "vm"> contents-1 contents-2 ... contents-n </tag>
In the Scheme form it is even possible to have attributes between and after the textual content. Attributes prefixed with 'css:' are CSS style attributes.

Unless stated otherwise there will be a space character between contents strings, such as in between contents-1 and contents-2. A boolean value false in between the contents strings, such as between contents-1 and contents-2, suppresses white space in between them. This is in particular useful before punctuation characters. We recommend that you bind #f to a notationally convenient variable such as '_'.

If the boolean variable check-html-attributes? is true the functions check the attributes of the tag against the attribute definitions in the document type definition.

The HTML mirror functions emit non-pretty printed HTML code. If you want pretty printed HTML you can use the HTML pretty printer, which is part of the LAML software package. See also the html-pp procedure. Notice that pretty printing may be quite expensive compared with the generation as such.

This library requries the general library and the accompanying basic form library.

Notice that the function map and the HTML element map give a name collision.We prefix the HTML element with 'html:' when applied as a HTML mirror function in LAML.

This library provides links to the W3 document which defines the HTML tags. The underlying WWW pages are supplied as part of the LAML software bundle.

See also the basic form library of the mirror and the HTML convenience library.

This library is obsolete for development of new stuff. Use a validating mirror instead!

Table of Contents:
1. Other useful functions.2. The HTML surface mirror functions

Alphabetic index:
__The symbolic name of explicit white space suppress
a(a . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) A double tag element (anchor ).
abbr(abbr . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) ABBR double tag element (no explanation available).
acronym(acronym . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) ACRONYM double tag element (no explanation available).
address(address . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) ADDRESS double tag element (information on author ).
applet(applet . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) APPLET double tag element (Java applet ).
area(area . attributes)The LAML mirror of the HTML 4.0 (loose) AREA single tag element (client-side image map area ).
b(b . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) B double tag element (no explanation available).
base(base . attributes)The LAML mirror of the HTML 4.0 (loose) BASE single tag element (document base URI ).
basefont(basefont . attributes)The LAML mirror of the HTML 4.0 (loose) BASEFONT single tag element (base font size ).
bdo(bdo . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) BDO double tag element (I18N BiDi over-ride ).
big(big . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) BIG double tag element (no explanation available).
blockquote(blockquote . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) BLOCKQUOTE double tag element (long quotation ).
body(body . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) BODY tag element which can be applied without contents (corresponding to start tag only) (document body ).
br(br . attributes)The LAML mirror of the HTML 4.0 (loose) BR single tag element (forced line break ).
button(button . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) BUTTON double tag element (push button ).
caption(caption . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) CAPTION double tag element (table caption ).
center(center . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) CENTER double tag element (shorthand for DIV align=center ).
cite(cite . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) CITE double tag element (no explanation available).
code(code . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) CODE double tag element (no explanation available).
col(col . attributes)The LAML mirror of the HTML 4.0 (loose) COL single tag element (table column ).
colgroup(colgroup . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) COLGROUP tag element which can be applied without contents (corresponding to start tag only) (table column group ).
concatenate(concatenate . parameters)A non-HTML tag which concatenates parameters of a form to a single string.
dd(dd . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) DD tag element which can be applied without contents (corresponding to start tag only) (definition description ).
del(del . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) DEL double tag element (inserted text, deleted text ).
dfn(dfn . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) DFN double tag element (no explanation available).
dir(dir . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) DIR double tag element (directory list, menu list ).
div(div . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) DIV double tag element (generic language/style container ).
dl(dl . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) DL double tag element (definition list ).
dt(dt . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) DT tag element which can be applied without contents (corresponding to start tag only) (definition term ).
em(em . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) EM double tag element (no explanation available).
fieldset(fieldset . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) FIELDSET double tag element (form control group ).
font(font . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) FONT double tag element (local change to font ).
form(form . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) FORM double tag element (interactive form ).
frame(frame . attributes)The LAML mirror of the HTML 4.0 (loose) FRAME single tag element (subwindow ).
frameset(frameset . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) FRAMESET double tag element (window subdivision).
free-html-element(free-html-element tag-name . parameters)Generate a HTML tag application for tag-name with attributes and contents given by parameters.
free-html-element-1(free-html-element-1 tag-name parameters)Generate a HTML tag application for tag-name with attributes and contents given by parameters.
h1(h1 . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) H1 double tag element (heading ).
h2(h2 . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) H2 double tag element (heading ).
h3(h3 . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) H3 double tag element (heading ).
h4(h4 . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) H4 double tag element (heading ).
h5(h5 . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) H5 double tag element (heading ).
h6(h6 . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) H6 double tag element (heading ).
head(head . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) HEAD tag element which can be applied without contents (corresponding to start tag only) (document head ).
hr(hr . attributes)The LAML mirror of the HTML 4.0 (loose) HR single tag element (horizontal rule ).
html(html . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) HTML tag element which can be applied without contents (corresponding to start tag only) (document root element ).
html:map(html:map . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) HTML:MAP double tag element (client-side image map ).
i(i . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) I double tag element (no explanation available).
iframe(iframe . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) IFRAME double tag element (inline subwindow ).
img(img . attributes)The LAML mirror of the HTML 4.0 (loose) IMG single tag element (Embedded image ).
input(input . attributes)The LAML mirror of the HTML 4.0 (loose) INPUT single tag element (form control ).
ins(ins . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) INS double tag element (inserted text, deleted text ).
isindex(isindex . attributes)The LAML mirror of the HTML 4.0 (loose) ISINDEX single tag element (single line prompt ).
kbd(kbd . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) KBD double tag element (no explanation available).
label(label . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) LABEL double tag element (form field label text ).
legend(legend . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) LEGEND double tag element (fieldset legend ).
li(li . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) LI tag element which can be applied without contents (corresponding to start tag only) (list item ).
link(link . attributes)The LAML mirror of the HTML 4.0 (loose) LINK single tag element (a media-independent link ).
menu(menu . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) MENU double tag element (directory list, menu list ).
meta(meta . attributes)The LAML mirror of the HTML 4.0 (loose) META single tag element (generic metainformation ).
modify-element(modify-element element . attributes-and-contents)Define partial attributes and element contents of element and return a new element function with the attributes and contents partially fixed.
noframes(noframes . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) NOFRAMES double tag element (alternate content container for non frame-based rendering ).
noscript(noscript . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) NOSCRIPT double tag element (alternate content container for non script-based rendering ).
object(object . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) OBJECT double tag element (generic embedded object ).
ol(ol . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) OL double tag element (ordered list ).
optgroup(optgroup . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) OPTGROUP double tag element (option group ).
option(option . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) OPTION tag element which can be applied without contents (corresponding to start tag only) (selectable choice ).
p(p . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) P tag element which can be applied without contents (corresponding to start tag only) (paragraph ).
param(param . attributes)The LAML mirror of the HTML 4.0 (loose) PARAM single tag element (named property value ).
pre(pre . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) PRE double tag element (preformatted text ).
q(q . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) Q double tag element (short inline quotation ).
s(s . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) S double tag element (no explanation available).
samp(samp . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) SAMP double tag element (no explanation available).
script(script . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) SCRIPT double tag element (script statements ).
select(select . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) SELECT double tag element (option selector ).
small(small . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) SMALL double tag element (no explanation available).
span(span . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) SPAN double tag element (generic language/style container ).
strike(strike . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) STRIKE double tag element (no explanation available).
strong(strong . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) STRONG double tag element (no explanation available).
style(style . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) STYLE double tag element (style info ).
sub(sub . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) SUB double tag element (subscript, superscript ).
sup(sup . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) SUP double tag element (subscript, superscript ).
table(table . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TABLE double tag element (no explanation available).
tbody(tbody . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TBODY tag element which can be applied without contents (corresponding to start tag only) (table body ).
td(td . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TD tag element which can be applied without contents (corresponding to start tag only) (table header cell, table data cell).
textarea(textarea . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TEXTAREA double tag element (multi-line text field ).
tfoot(tfoot . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TFOOT tag element which can be applied without contents (corresponding to start tag only) (table footer ).
th(th . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TH tag element which can be applied without contents (corresponding to start tag only) (table header cell, table data cell).
thead(thead . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) THEAD tag element which can be applied without contents (corresponding to start tag only) (table header ).
title(title . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TITLE double tag element (document title ).
tr(tr . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TR tag element which can be applied without contents (corresponding to start tag only) (table row ).
tt(tt . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) TT double tag element (no explanation available).
u(u . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) U double tag element (no explanation available).
ul(ul . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) UL double tag element (unordered list ).
var(var . attributes-and-contents)The LAML mirror of the HTML 4.0 (loose) VAR double tag element (no explanation available).

_


Form
_

Description
The symbolic name of explicit white space suppress


 

1.   OTHER USEFUL FUNCTIONS.
In this section there are non-mirror functions which are useful in surface HTML forms.


concatenate


Form
(concatenate . parameters)

Description
A non-HTML tag which concatenates parameters of a form to a single string. There may be boolean values among the parameters. A boolean false after a textual contents string suppresses white space after the contents string. Warn if there are attributes among the parameters. Possible attributes are just skipped.


free-html-element


Form
(free-html-element tag-name . parameters)

Description
Generate a HTML tag application for tag-name with attributes and contents given by parameters. The parameters obeys the syntax of a the LAML surface forms. This function is useful for generation of non-standard tag applications.


free-html-element-1


Form
(free-html-element-1 tag-name parameters)

Description
Generate a HTML tag application for tag-name with attributes and contents given by parameters. This function corresponds exactly to free-html-element; however, this function takes exactly two parameters whereas free-html-elements takes one or more parameters.


modify-element


Form
(modify-element element . attributes-and-contents)

Description
Define partial attributes and element contents of element and return a new element function with the attributes and contents partially fixed. attributes-and-contents is of the same form as the parameters to a LAML surface mirror functions. In fact, attributes-and-contents are just appended to the actual parameters to the modified.

Returns
an attribute-modified mirror function


 

2.   THE HTML SURFACE MIRROR FUNCTIONS


html


Form
(html . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) HTML tag element which can be applied without contents (corresponding to start tag only) (document root element ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:html
HTML documentationHTML

Note
No required attributes.

Optional attributes: lang, dir, version.



noscript


Form
(noscript . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) NOSCRIPT double tag element (alternate content container for non script-based rendering ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:noscript
HTML documentationNOSCRIPT

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



script


Form
(script . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) SCRIPT double tag element (script statements ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:script
HTML documentationSCRIPT

Note
Required attributes: type.

Optional attributes: charset, language, src, defer, event, for.



style


Form
(style . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) STYLE double tag element (style info ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:style
HTML documentationSTYLE

Note
Required attributes: type.

Optional attributes: lang, dir, media, title.



meta


Form
(meta . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) META single tag element (generic metainformation ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:meta
HTML documentationMETA

Note
Required attributes: content.

Optional attributes: lang, dir, http-equiv, name, scheme.



base


Form
(base . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) BASE single tag element (document base URI ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:base
HTML documentationBASE

Note
No required attributes.

Optional attributes: href, target.



isindex


Form
(isindex . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) ISINDEX single tag element (single line prompt ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:isindex
HTML documentationISINDEX

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, prompt.



title


Form
(title . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TITLE double tag element (document title ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:title
HTML documentationTITLE

Note
No required attributes.

Optional attributes: lang, dir.



head


Form
(head . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) HEAD tag element which can be applied without contents (corresponding to start tag only) (document head ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:head
HTML documentationHEAD

Note
No required attributes.

Optional attributes: lang, dir, profile.



noframes


Form
(noframes . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) NOFRAMES double tag element (alternate content container for non frame-based rendering ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:noframes
HTML documentationNOFRAMES

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



iframe


Form
(iframe . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) IFRAME double tag element (inline subwindow ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:iframe
HTML documentationIFRAME

Note
No required attributes.

Optional attributes: id, class, style, title, longdesc, name, src, frameborder, marginwidth, marginheight, scrolling, align, height, width.



frame


Form
(frame . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) FRAME single tag element (subwindow ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:frame
HTML documentationFRAME

Note
No required attributes.

Optional attributes: id, class, style, title, longdesc, name, src, frameborder, marginwidth, marginheight, noresize, scrolling.



frameset


Form
(frameset . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) FRAMESET double tag element (window subdivision).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:frameset
HTML documentationFRAMESET

Note
No required attributes.

Optional attributes: id, class, style, title, rows, cols, onload, onunload, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



th


Form
(th . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TH tag element which can be applied without contents (corresponding to start tag only) (table header cell, table data cell).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:th
HTML documentationTH

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, abbr, axis, headers, scope, rowspan, colspan, align, char, charoff, valign, nowrap, bgcolor, width, height.



td


Form
(td . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TD tag element which can be applied without contents (corresponding to start tag only) (table header cell, table data cell).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:td
HTML documentationTD

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, abbr, axis, headers, scope, rowspan, colspan, align, char, charoff, valign, nowrap, bgcolor, width, height.



tr


Form
(tr . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TR tag element which can be applied without contents (corresponding to start tag only) (table row ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:tr
HTML documentationTR

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, char, charoff, valign, bgcolor.



col


Form
(col . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) COL single tag element (table column ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:col
HTML documentationCOL

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, span, width, align, char, charoff, valign.



colgroup


Form
(colgroup . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) COLGROUP tag element which can be applied without contents (corresponding to start tag only) (table column group ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:colgroup
HTML documentationCOLGROUP

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, span, width, align, char, charoff, valign.



tbody


Form
(tbody . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TBODY tag element which can be applied without contents (corresponding to start tag only) (table body ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:tbody
HTML documentationTBODY

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, char, charoff, valign.



tfoot


Form
(tfoot . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TFOOT tag element which can be applied without contents (corresponding to start tag only) (table footer ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:tfoot
HTML documentationTFOOT

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, char, charoff, valign.



thead


Form
(thead . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) THEAD tag element which can be applied without contents (corresponding to start tag only) (table header ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:thead
HTML documentationTHEAD

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, char, charoff, valign.



caption


Form
(caption . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) CAPTION double tag element (table caption ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:caption
HTML documentationCAPTION

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



table


Form
(table . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TABLE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:table
HTML documentationTABLE

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, summary, width, border, frame, rules, cellspacing, cellpadding, align, bgcolor, datapagesize.



button


Form
(button . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) BUTTON double tag element (push button ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:button
HTML documentationBUTTON

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, name, value, type, disabled, tabindex, accesskey, onfocus, onblur.



legend


Form
(legend . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) LEGEND double tag element (fieldset legend ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:legend
HTML documentationLEGEND

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, accesskey, align.



fieldset


Form
(fieldset . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) FIELDSET double tag element (form control group ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:fieldset
HTML documentationFIELDSET

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



textarea


Form
(textarea . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TEXTAREA double tag element (multi-line text field ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:textarea
HTML documentationTEXTAREA

Note
Required attributes: rows, cols.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, name, disabled, readonly, tabindex, accesskey, onfocus, onblur, onselect, onchange.



option


Form
(option . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) OPTION tag element which can be applied without contents (corresponding to start tag only) (selectable choice ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:option
HTML documentationOPTION

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, selected, disabled, label, value.



optgroup


Form
(optgroup . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) OPTGROUP double tag element (option group ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:optgroup
HTML documentationOPTGROUP

Note
Required attributes: label.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, disabled.



select


Form
(select . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) SELECT double tag element (option selector ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:select
HTML documentationSELECT

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, name, size, multiple, disabled, tabindex, onfocus, onblur, onchange.



input


Form
(input . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) INPUT single tag element (form control ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:input
HTML documentationINPUT

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, type, name, value, checked, disabled, readonly, size, maxlength, src, alt, usemap, tabindex, accesskey, onfocus, onblur, onselect, onchange, accept, align.



label


Form
(label . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) LABEL double tag element (form field label text ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:label
HTML documentationLABEL

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, for, accesskey, onfocus, onblur.



form


Form
(form . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) FORM double tag element (interactive form ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:form
HTML documentationFORM

Note
Required attributes: action.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, method, enctype, onsubmit, onreset, target, accept-charset.



li


Form
(li . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) LI tag element which can be applied without contents (corresponding to start tag only) (list item ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:li
HTML documentationLI

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, type, value.



dir


Form
(dir . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) DIR double tag element (directory list, menu list ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:dir
HTML documentationDIR

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, compact.



menu


Form
(menu . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) MENU double tag element (directory list, menu list ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:menu
HTML documentationMENU

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, compact.



ul


Form
(ul . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) UL double tag element (unordered list ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:ul
HTML documentationUL

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, type, compact.



ol


Form
(ol . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) OL double tag element (ordered list ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:ol
HTML documentationOL

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, type, compact, start.



dd


Form
(dd . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) DD tag element which can be applied without contents (corresponding to start tag only) (definition description ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:dd
HTML documentationDD

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



dt


Form
(dt . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) DT tag element which can be applied without contents (corresponding to start tag only) (definition term ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:dt
HTML documentationDT

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



dl


Form
(dl . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) DL double tag element (definition list ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:dl
HTML documentationDL

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, compact.



ins


Form
(ins . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) INS double tag element (inserted text, deleted text ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:ins
HTML documentationINS

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, cite, datetime.



del


Form
(del . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) DEL double tag element (inserted text, deleted text ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:del
HTML documentationDEL

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, cite, datetime.



blockquote


Form
(blockquote . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) BLOCKQUOTE double tag element (long quotation ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:blockquote
HTML documentationBLOCKQUOTE

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, cite.



q


Form
(q . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) Q double tag element (short inline quotation ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:q
HTML documentationQ

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, cite.



pre


Form
(pre . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) PRE double tag element (preformatted text ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:pre
HTML documentationPRE

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, width.



h1


Form
(h1 . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) H1 double tag element (heading ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:h1
HTML documentationH1

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h2


Form
(h2 . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) H2 double tag element (heading ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:h2
HTML documentationH2

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h3


Form
(h3 . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) H3 double tag element (heading ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:h3
HTML documentationH3

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h4


Form
(h4 . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) H4 double tag element (heading ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:h4
HTML documentationH4

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h5


Form
(h5 . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) H5 double tag element (heading ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:h5
HTML documentationH5

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h6


Form
(h6 . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) H6 double tag element (heading ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:h6
HTML documentationH6

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



p


Form
(p . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) P tag element which can be applied without contents (corresponding to start tag only) (paragraph ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:p
HTML documentationP

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



hr


Form
(hr . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) HR single tag element (horizontal rule ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:hr
HTML documentationHR

Note
No required attributes.

Optional attributes: id, class, style, title, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, noshade, size, width.



applet


Form
(applet . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) APPLET double tag element (Java applet ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:applet
HTML documentationAPPLET

Note
Required attributes: width, height.

Optional attributes: id, class, style, title, codebase, archive, code, object, alt, name, align, hspace, vspace.



param


Form
(param . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) PARAM single tag element (named property value ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:param
HTML documentationPARAM

Note
Required attributes: name.

Optional attributes: id, value, valuetype, type.



object


Form
(object . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) OBJECT double tag element (generic embedded object ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:object
HTML documentationOBJECT

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, declare, classid, codebase, data, type, codetype, archive, standby, height, width, usemap, name, tabindex, align, border, hspace, vspace.



img


Form
(img . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) IMG single tag element (Embedded image ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:img
HTML documentationIMG

Note
Required attributes: src, alt.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, longdesc, height, width, usemap, ismap, align, border, hspace, vspace.



link


Form
(link . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) LINK single tag element (a media-independent link ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:link
HTML documentationLINK

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, charset, href, hreflang, type, rel, rev, media, target.



area


Form
(area . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) AREA single tag element (client-side image map area ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:area
HTML documentationAREA

Note
Required attributes: alt.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, shape, coords, href, target, nohref, tabindex, accesskey, onfocus, onblur.



html:map


Form
(html:map . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) HTML:MAP double tag element (client-side image map ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:map
HTML documentationHTML:MAP

Note
Required attributes: name.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



a


Form
(a . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) A double tag element (anchor ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:a
HTML documentationA

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, charset, type, name, href, hreflang, target, rel, rev, accesskey, shape, coords, tabindex, onfocus, onblur.



center


Form
(center . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) CENTER double tag element (shorthand for DIV align=center ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:center
HTML documentationCENTER

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



div


Form
(div . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) DIV double tag element (generic language/style container ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:div
HTML documentationDIV

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



address


Form
(address . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) ADDRESS double tag element (information on author ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:address
HTML documentationADDRESS

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



body


Form
(body . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) BODY tag element which can be applied without contents (corresponding to start tag only) (document body ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:body
HTML documentationBODY

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, onload, onunload, background, bgcolor, text, link, vlink, alink.



br


Form
(br . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) BR single tag element (forced line break ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:br
HTML documentationBR

Note
No required attributes.

Optional attributes: id, class, style, title, clear.



font


Form
(font . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) FONT double tag element (local change to font ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:font
HTML documentationFONT

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, size, color, face.



basefont


Form
(basefont . attributes)

Description
The LAML mirror of the HTML 4.0 (loose) BASEFONT single tag element (base font size ).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:basefont
HTML documentationBASEFONT

Note
Required attributes: size.

Optional attributes: id, color, face.



bdo


Form
(bdo . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) BDO double tag element (I18N BiDi over-ride ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:bdo
HTML documentationBDO

Note
Required attributes: dir.

Optional attributes: id, class, style, title, lang.



span


Form
(span . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) SPAN double tag element (generic language/style container ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:span
HTML documentationSPAN

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



sub


Form
(sub . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) SUB double tag element (subscript, superscript ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:sub
HTML documentationSUB

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



sup


Form
(sup . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) SUP double tag element (subscript, superscript ).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:sup
HTML documentationSUP

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



tt


Form
(tt . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) TT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:tt
HTML documentationTT

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



i


Form
(i . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) I double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:i
HTML documentationI

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



b


Form
(b . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) B double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:b
HTML documentationB

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



u


Form
(u . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) U double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:u
HTML documentationU

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



s


Form
(s . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) S double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:s
HTML documentationS

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



strike


Form
(strike . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) STRIKE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:strike
HTML documentationSTRIKE

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



big


Form
(big . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) BIG double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:big
HTML documentationBIG

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



small


Form
(small . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) SMALL double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:small
HTML documentationSMALL

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



em


Form
(em . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) EM double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:em
HTML documentationEM

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



strong


Form
(strong . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) STRONG double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:strong
HTML documentationSTRONG

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



dfn


Form
(dfn . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) DFN double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:dfn
HTML documentationDFN

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



code


Form
(code . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) CODE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:code
HTML documentationCODE

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



samp


Form
(samp . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) SAMP double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:samp
HTML documentationSAMP

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



kbd


Form
(kbd . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) KBD double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:kbd
HTML documentationKBD

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



var


Form
(var . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) VAR double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:var
HTML documentationVAR

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



cite


Form
(cite . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) CITE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:cite
HTML documentationCITE

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



abbr


Form
(abbr . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) ABBR double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:abbr
HTML documentationABBR

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



acronym


Form
(acronym . attributes-and-contents)

Description
The LAML mirror of the HTML 4.0 (loose) ACRONYM double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formhtml4:acronym
HTML documentationACRONYM

Note
No required attributes.

Optional attributes: id, class, style, title, lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



Generated: Monday, November 14, 2011, 09:09:56
This documentation has been extracted automatically from the Scheme source file by means of the Schemedoc tool