Web Design Forums

Coding Articles & Tutorials

Read about HTML, PHP, Java, and many other popular languages.

How to Create Powerful Content with Lists



Site of the Month Nominations
ENTER YOUR SITE NOW!

Reply
 
LinkBack Thread Tools
Old February 12 '04, 11:45 PM (#1)
smoseley is offline
WDF Moderator
 
smoseley's Avatar
 
Join Date: March 2003
Location: Miami, FL
Posts: 8,796
smoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud of
How to Create Powerful Content with Lists

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
  1. It has been well known in the advertising world for decades that Ordered (Numbered) Lists increase the readership of a body of text.
  2. Pioneers of print media (such as Ogilvy and Mather) often used lists exclusively in an ad (such as their famed Rolls Royce print ad of the late 60s) which would increase the amount of readers by 10% or more on average.
  3. Why people like to read text in lists is unknown, but my belief is that it organizes information into easily tackled sections that:
    • Define the individual thoughts contained within the text as separate entities, and
    • Order those separate entities in the level of significance perceived by the author.
<ol></ol>
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:
Code:
<ol>
    <li>List Item 1</li>
    <li>List Item 2</li>
    <li>List Item 3
        <ol type="a">
            <li>List Item 3a</li>
            <li>List Item 3b</li>
            <li>List Item 3c</li>
        </ol>
    </li>
</ol>
Unordered Lists
  • Unordered (Bulletted) Lists are similar to Ordered (Numbered) Lists in that they divide a body of text into discernable thoughts.
  • However, unordered lists are less effective in increasing readership, because they lack the numbering of ordered lists (which further organizes the text).
  • Although effective in conveying a series of thoughts that have no particular order, it is preferable to use ordered lists whenever possible.
<ul></ul>
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:
Code:
<ul>
    <li>List Item 1</li>
    <li>List Item 2</li>
    <li>List Item 3
        <ul>
            <li>List Item 3a</li>
            <li>List Item 3b</li>
            <li>List Item 3c</li>
        </ul>
    </li>
</ul>
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:
Code:
<dl>
    <dt>Term 1</dt>
    <dd>Definition 1</dd>
    <dt>Term 2</dt>
    <dd>Definition 2</dd>
</dl>

Last edited by smoseley; February 13 '04 at 12:28 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 21 '04, 02:57 PM (#2)
jlgosse is offline
WDF Veteran Member
 
jlgosse's Avatar
 
Join Date: January 2004
Location: Newfoundland, Canada
Posts: 1,037
jlgosse has disabled reputation
Send a message via ICQ to jlgosse
You should also explain how alot of people incorperate CSS and graphics to make custom bullets, as well as special navigation.

Very cool tricks indeed.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 22 '04, 07:08 PM (#3)
smoseley is offline
WDF Moderator
 
smoseley's Avatar
 
Join Date: March 2003
Location: Miami, FL
Posts: 8,796
smoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud of
newfie, good point. I forgot about that
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 22 '04, 07:24 PM (#4)
jlgosse is offline
WDF Veteran Member
 
jlgosse's Avatar
 
Join Date: January 2004
Location: Newfoundland, Canada
Posts: 1,037
jlgosse has disabled reputation
Send a message via ICQ to jlgosse
All in a days work Transio!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

  Web Design Forums » Web Design Help » Articles & Tutorials » Coding Articles & Tutorials

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
User Infomation
Your Avatar

Site Of The Month

Ticket Cake
Ticket Cake

Ticket Cake is a drupal based event ticketing platform. It features that ability to browse events and share them.

Nominate Your Site Now!

Advertisement
WolfCMS.org

Latest Articles
- by RickM
- by bfsog

Advertisement

Partner Links



All times are GMT -4. The time now is 02:29 AM.


WebDesignForums.net is Copyright © 2010 RikeMedia.

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163