<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Hi, I'm wondering what's the current best practice for marking up an FAQ. There seem to be 3 main alternatives:<div><br></div><div><h1>Question</h1></div><div><p>Answer</p></div><div><div><h1>Question</h1></div><div><p>Answer</p></div></div><div>...</div><div><br></div><div>or</div><div><br></div><div><dl></div><div>  <dt>Question</dt></div><div>  <dd>Answer</dd></div><div><div>  <dt>Question</dt></div><div>  <dd>Answer</dd></div></div><div>...</div><div></dl></div><div><br></div><div>or</div><div><br></div><div><details></div><div>  <summary>Question</summary></div><div>  <p>Answer</p></div><div></details></div><div><details></div><div>  <summary>Question</summary></div><div>  <p>Answer</p></div><div></details></div><div>...</div><div><br></div><div>The h1-p option would create an implicit section for each question and affect the document outline. Perhaps that would be a good thing if you wanted to create a TOC for the FAQ...</div><div><br></div><div>The association list (dl) seems like a reasonable option if you don't want to affect the document's outline. I'm not sure of any advantages/disadvantages of this markup, though.</div><div><br></div><div>The details-summary option seems nice if you want a "collapsed" FAQs, particularly for those who don't know how to program in JS, but IE and FF don't yet support this functionality AFAICT. Also not sure if FAQ was an intended use of details-summary, semantically.</div><div><br></div><div>I searched but couldn't find anything related to marking up FAQs in the spec, (including section 4.13).</div><div><br></div><div>Thanks</div>                                      </div></body>
</html>