> Web Man Walking > I was wondering if anyone had any experience of the > best Web Standardy way of documenting Help/FAQ's etc.
There's no one way that is "The Best(tm)", but some ideas would be: - using definition lists <dl> <dt>Q</dt> <dd>A</dd> <dt>Q</dt> <dd>A</dd> ... </dl> - simply using headings/paragraphs <h1>Help / <abbr title="Frequently Asked Questions">FAQ</abbr></h1> <h2>Q</h2> <p>A</p> <h2>Q</h2> <p>A</p> ... - a Q/A table <table> <thead> <tr> <th scope="col">Question</th> <th scope="col">Answer</th> </tr> </thead> <tbody> <tr> <th scope="row">Q</th> <td>A</td> </tr> <tr> <th scope="row">Q</th> <td>A</td> </tr> ... </tbody> </table> P ________________________________ Patrick H. Lauke Web Editor / University of Salford http://www.salford.ac.uk ________________________________ Web Standards Project (WaSP) Accessibility Task Force http://webstandards.org/ ________________________________ ****************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
