Tim MacKay wrote:
Hello all,
Just looking for a little help. I'm creating a sort of 'point form'
list that goes a bit like this:
1. Pursuit of customer satisfaction
"We promise to pursue customer satisfaction as our main point of
customer focus...blah blah blah...."
2. Pursuit of customer loyalty
"We promise to pursue customer loyalty as our secondary point of
customer focus...blah blah blah...."
The critical detail here is "point-form". If we were to take away the
bullet points what's left are standard headings and paragraphs. Hence, a
definition list is not appropriate. The way to mark this up would be:
<ol>
<li>
<h2>Pursuit of customer satisfaction</h2>
<p>We promise to pursue customer satisfaction as our main point
of customer focus...</p>
</li>
<li>
<h2>Pursuit of customer loyalty</h2>
<p>We promise to pursue customer loyalty as our secondary point
of customer focus...</p>
</li>
</ol>
Note: The <h2> here is totally arbitrary, but do use the appropriate
heading in your own code.
---
Ca Phun Ung
http://yelotofu.com
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************