| How to Create Powerful Content with Lists By smoseley, Forum Owner Home page Private message E-mail |
| Written February 12 '04 at 10:45 PM |
|
How to Create Powerful Content with Lists by Steven Moseley Lists allow you to display information in an ordered fashion by dissecting the content of your site into smaller, more legible pieces. Lists have been used in advertising for years, and are proven to increase readership. They convey the notion that you have something important to say, and that you have organized your thoughts clearly enough to section them appropriately and concisely. In HTML, there are three pre-defined types of lists: ordered lists, unordered lists, and definition lists. List Items List items specify points to note in ordered and unordered lists. Each item is separated from the others on its own line and preceeded either by a numerical, alphabetic, or graphical point marker. Item Types The type defines what kind of numbering or lettering will order the list. Possible values are "I", "i", "A", and "a". Default is numeric. Ordered Lists
These are the “ordered list” elements. Any information between them will be indented from the previous text. Further, any list items defined between them will follow a “1,2,3” or “a,b,c” hierarchy (thus the name “ordered”). Example:
Unordered Lists
Any information in unordered lists will be indented from the previous text. Further, any list items defined between them will follow a bulleted hierarchy (not numbered, and therefore “unordered”). Example:
Definition Lists Definition lists are a little different from ordered and unordered lists because they don't have any preceeding marker, and because they have two elements for each item in the list: a term and a definition The "term" element denotes the word or phrase that will be defined. It is not indexed (as other items in lists). The "definition" element is the description of the term element. It is indexed (tabbed) to the right to distinguish it. Example:
|
| Post a Comment |