|
Page 1
basic elements, structural,
text formatting, links & graphics,
dividers, backgrounds & color,
special characters
Page 2
lists, forms,
tables, frames,
JAVA, miscellaneous
| LISTS |
| |
Unordered List |
<UL><LI></UL> |
(<LI> before each list item) |
| |
Compact |
<UL COMPACT></UL> |
|
| |
Bullet Type |
<UL TYPE=DISC|CIRCLE|SQUARE> |
(for the whole list) |
| <LI TYPE=DISC|CIRCLE|SQUARE> |
(this & subsequent) |
| |
Ordered List |
<OL><LI></OL> |
(<LI> before each list item) |
| |
Compact |
<OL COMPACT></OL> |
|
| |
Numbering Type |
<OL TYPE=A|a|I|i|1> |
(for the whole list) |
| <LI TYPE=A|a|I|i|1> |
(this & subsequent) |
| |
Starting Number |
<OL START=?> |
(for the whole list) |
| <LI VALUE=?> |
(this & subsequent) |
| |
Definition List |
<DL><DT><DD></DL> |
(<DT>=term, <DD>=definition) |
| |
Compact |
<DL COMPACT></DL> |
|
| |
Menu List |
<MENU><LI></MENU> |
(<LI> before each list item) |
| |
Compact |
<MENU COMPACT></MENU> |
|
| |
Directory List |
<DIR><LI></DIR> |
(<LI> before each list item) |
| |
Compact |
<DIR COMPACT></DIR> |
|
| FORMS |
| |
Define Form |
<FORM ACTION="URL" METHOD=GET|POST></FORM>
|
|
| N2.0 |
File Upload |
<FORM ENCTYPE="multipart/form-data"></FORM>
|
|
| |
Input Field |
<INPUT TYPE="TEXT|PASSWORD|CHECKBOX|RADIO|
IMAGE|HIDDEN|SUBMIT|RESET"> |
|
| |
Field Name |
<INPUT NAME="***"> |
|
| |
Field Value |
<INPUT VALUE="***"> |
|
| |
Checked? |
<INPUT CHECKED> |
(checkboxes and radio boxes) |
| |
Field Size |
<INPUT SIZE=?> |
(in characters) |
| |
Max Length |
<INPUT MAXLENGTH=?> |
(in characters) |
| |
Selection List |
<SELECT></SELECT> |
|
| |
Name of List |
<SELECT NAME="***"></SELECT>
|
|
| |
# of Options |
<SELECT SIZE=?></SELECT>
|
|
| |
Multiple Choice |
<SELECT MULTIPLE> |
(can select more than one) |
| |
Option |
<OPTION> |
(items that can be selected) |
| |
Default Option |
<OPTION SELECTED> |
|
| |
Input Box Size |
<TEXTAREA ROWS=? COLS=?></TEXTAREA>
|
|
| |
Name of Box |
<TEXTAREA NAME="***"></TEXTAREA>
|
|
| N2.0 |
Wrap Text |
<TEXTAREA WRAP=OFF|VIRTUAL|PHYSICAL></TEXTAREA>
|
|
| TABLES |
| |
Define Table |
<TABLE></TABLE> |
|
| |
Table Border |
<TABLE BORDER=?></TABLE> |
|
| |
Cell Spacing |
<TABLE CELLSPACING=?> |
|
| |
Cell Padding |
<TABLE CELLPADDING=?> |
|
| |
Desired Width |
<TABLE WIDTH=?> |
(in pixels) |
| |
Width Percent |
<TABLE WIDTH="%"> |
(percentage of page) |
| |
Table Row |
<TR></TR> |
|
| |
Alignment |
<TR ALIGN=LEFT|RIGHT| CENTER|MIDDLE|BOTTOM
VALIGN=TOP|BOTTOM|MIDDLE> |
|
| |
Table Cell |
<TD></TD> |
(must appear within table rows) |
| |
Alignment |
<TD ALIGN=LEFT|RIGHT| CENTER|MIDDLE|BOTTOM
VALIGN=TOP|BOTTOM|MIDDLE> |
|
| |
No linebreaks |
<TD NOWRAP> |
|
| |
Columns to Span |
<TD COLSPAN=?> |
|
| |
Rows to Span |
<TD ROWSPAN=?> |
|
| N1.1 |
Desired Width |
<TD WIDTH=?> |
(in pixels) |
| N1.1 |
Width Percent |
<TD WIDTH="%"> |
(percentage of table) |
| N3.0b |
Cell Color |
<TD BGCOLOR="#$$$$$$"> |
|
| |
Table Header |
<TH></TH> |
(same as data, except bold centered) |
| |
Alignment |
<TH ALIGN=LEFT|RIGHT| CENTER|MIDDLE|BOTTOM
VALIGN=TOP|BOTTOM|MIDDLE> |
|
| |
No Linebreaks |
<TH NOWRAP> |
|
| |
Columns to Span |
<TH COLSPAN=?> |
|
| |
Rows to Span |
<TH ROWSPAN=?> |
|
| N1.1 |
Desired Width |
<TH WIDTH=?> |
(in pixels) |
| N1.1 |
Width Percent |
<TH WIDTH="%"> |
(percentage of table) |
| N3.0b |
Cell Color |
<TH BGCOLOR="#$$$$$$"> |
|
| |
Table Caption |
<CAPTION></CAPTION> |
|
| |
Alignment |
<CAPTION ALIGN=TOP|BOTTOM> |
(above/below table) |
| FRAMES |
| N2.0 |
Frame Document |
<FRAMESET></FRAMESET> |
(instead of <BODY>) |
| N2.0 |
Row Heights |
<FRAMESET ROWS=,,,></FRAMESET> |
(pixels or %) |
| N2.0 |
Row Heights |
<FRAMESET ROWS=*></FRAMESET> |
(* = relative size) |
| N2.0 |
Column Widths |
<FRAMESET COLS=,,,></FRAMESET> |
(pixels or %) |
| N2.0 |
Column Widths |
<FRAMESET COLS=*></FRAMESET> |
(* = relative size) |
| N3.0b |
Border Width |
<FRAMESET BORDER=?> |
|
| N3.0b |
Borders |
<FRAMESET FRAMEBORDER="yes|no">
|
|
| N3.0b |
Border Color |
<FRAMESET BORDERCOLOR="#$$$$$$">
|
|
| N2.0 |
Define Frame |
<FRAME> |
(contents of an individual frame) |
| N2.0 |
Display Document |
<FRAME SRC="URL"> |
|
| N2.0 |
Frame Name |
<FRAME NAME="***"|_blank|_self|
_parent|_top> |
|
| N2.0 |
Margin Width |
<FRAME MARGINWIDTH=?> |
(left and right margins) |
| N2.0 |
Margin Height |
<FRAME MARGINHEIGHT=?> |
(top and bottom margins) |
| N2.0 |
Scrollbar? |
<FRAME SCROLLING="YES|NO|AUTO">
|
|
| N2.0 |
Not Resizable |
<FRAME NORESIZE> |
|
| N3.0b |
Borders |
<FRAME FRAMEBORDER="yes|no"> |
|
| N3.0b |
Border Color |
<FRAME BORDERCOLOR="#$$$$$$"> |
|
| N2.0 |
Unframed Content |
<NOFRAMES></NOFRAMES> |
(for non-frames browsers) |
| JAVA |
| |
Applet |
<APPLET></APPLET> |
|
| |
Applet File Name |
<APPLET CODE="***"> |
|
| |
Parameters |
<APPLET PARAM NAME="***"> |
|
| |
Applet Location |
<APPLET CODEBASE="URL"> |
|
| |
Applet Identifier |
<APPLET NAME="***"> |
(for references elsewhere in the page) |
| |
Alternative Text |
<APPLET ALT="***"> |
(for non-Java browsers) |
| |
Alignment |
<APPLET ALIGN="LEFT|RIGHT|CENTER">
|
|
| |
Size |
<APPLET WIDTH=? HEIGHT=?> |
(in pixels) |
| |
Spacing |
<APPLET HSPACE=? VSPACE=?> |
(in pixels) |
| MISCELLANEOUS |
| |
Comment |
<!-- *** --> |
(not displayed by the browser) |
| |
HTML 3.2 Prologue |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD
HTML 3.2//EN"> |
|
| |
Searchable |
<ISINDEX> |
(indicates a searchable index) |
| |
Prompt |
<ISINDEX PROMPT="***"> |
(text to prompt input) |
| |
Send Search |
<A HREF="URL?***"></a> |
(use a real question mark) |
| |
URL of This File |
<BASE HREF="URL"> |
(must be in header) |
| N2.0 |
Base Window Name |
<BASE TARGET="***"> |
(must be in header) |
| |
Relationship |
<LINK REV="***" REL="***"
HREF="URL"> |
(must be in header) |
| |
Meta Information |
<META> |
(must be in header) |
| |
Style Sheets |
<STYLE></STYLE> |
(not yet widely supported) |
| |
Scripts |
<SCRIPT></SCRIPT> |
(not yet widely supported) |
|
|