WebAIM - Web Accessibility In Mind

E-mail List Archives

Re: How would you mark up this information?

for

From: Webmaster
Date: Apr 22, 2005 11:40PM


Hi,

You may place it nicely on the page in logical blocks in the middle of
the page with something like:

<style type="text/css">
p.ctc {
margin-left: 150; margin-top: 7;
}

p.ctcd {
margin-left: 150; margin-top: 20;
}

p.ctcl {
margin-left: 185; margin-top: 7;
}
</style>

<p class="ctc">
Emergency Communications Center
...etc.

If you need more sophisticated list design have a look here
http://www.maxdesign.com.au/presentation/definition/index.cfm

brgds Alex

Don Hinshaw wrote:

>> Hi All,
>> I am wondering about the best way to mark up this list:
>> http://64.132.144.101/~somedom/access/subscription_sample.html
>> Should it be a list with each first line being <strong>, or should each
>> first line be a heading: <hx>?
>>
>> Or should it be a series of blocks like this:
>> <hx>item 1</hx>
>> <p>second line<br>
>> third line</p>
>>
>> <hx>item 2</hx>
>> <p>second line<br>
>> third line</p>
>>
>> Thanks for any suggestions.