On 13 Feb 2007, at 20:09:39, Jason Pruim wrote:
Hi Everyone,
On this website: http://www.raoset.com/terms/#materials
Specifically at the "Materials" section, I want to make it the most
readable/useable that I can. So I'm wondering if I should use <BR>
(Which is what is there now) or use a new <P> tag for each
paragraph? (As I typed that I may have figured it out...)
Each of your sections is numbered; this makes it an ordered list.
Each list item then contains a heading and one or more paragraphs. So
I would suggest that you need to use some structure along the lines of
<ol>
<li>
<h4 id="proposals">Proposals</h4>
<p>Proposals are subject to...</p>
</li>
<li>
<h4 id="cancellation">Cancellation</h4>
<p>Orders may be...</p>
</li>
</ol>
with use of CSS to get your list numbering inside the h4 elements,
and of course multiple p elements in the appropriate sections
removing the need for the br elements.
This should also help somewhat with the accessibility aspects of the
page.
HTH,
Nick.
--
Nick Fitzsimons
http://www.nickfitz.co.uk/
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************