The use of "lists" on Library Web pages is encouraged. However, it is important to include all elements of the list tag set when using them. Opening and closing codes must be present and list item ( <LI> ) tags included. Do not use the Definition List ( <DL> ) tag set to create indentions, leaving off the Definition Term ( <DT> ) or Definition ( <DD> ). Do not use header codes within lists.
Use the <OL>...</OL> tags to surround the ordered list items. Each item in the list should be preceeded with the <LI> tag (the closing </LI> tag is optional). Line breaks are implied after each list item.
Example:
Sample List
Use the "View Source" option of your browser to view the HTML codes that create the list.
Note - It is now possible to use the TYPE= attribute to affect the numbering (lettering) scheme used in the ordered list; however, the style sheet alternative is encouraged in HTML 4.01 - strict:
The START= attribute indicates on which number/letter the scheme should start. Not all browsers support TYPE= and START. When not supported, they will be ignored and the list items will be rendered in the standard way.
Use the <UL>...</UL> tags to surround the unordered list items. Each item in the list should be preceeded with the <LI> tag (the closing </LI> tag is optional). Line breaks are implied after each list item.
Example:
Sample List
Use the "View Source" option of your browser to view the HTML codes that create the list.
Note - It is now possible to change the default appearance of bullet styles for your lists; however, the style sheet alternative is encouraged in HTML 4.01 - strict:
Use the TYPE= attribute with the <UL> tag. There are three possible styles:
The TYPE= attribute is only supported on the newer versions of standard Web browsers.
Use the <DL>...</DL> tags to surround the definition list items. Each term in the list should be preceeded with the <DT> tag, and each definition in the list should be preceeded with the <DD> tag. Line breaks are implied after each list item.
Example:
Sample List
Use the "View Source" option of your browser to view the HTML codes that create the list.
Note - <DL> may not contain plain text or any tag other than <DT> or <DD>. Do not use definition list tags create an indented section of text. This is not guaranteed to work and it is syntactically invalid HTML.