I'm creating a website that has a FAQ page, and i was wondering if i could make an "ordered" list but instead of displaying
- question ....
a) answer ..... - question
a) answer
etc. which would be done using:
<ol>
<li>question</li>
<ol type="A">
<li>answer</li>
</ol>
<li>question 2</li>
<ol type="A">
<li>answer 2</li>
<ol>
</ol>
EDIT: I was unaware of dd and dt (description list) when I asked this question. Originally i was trying to make one line say Question and then Answer on the next line, but the answer @Timothy Jones said made more sense then making an ordered list.