Which semantics is better for a list of articles?
问题 I was asking myself for the markup of a list of entries of a blog. Which could be like that: Case 1 : <article>...</article> <article>...</article> <article>...</article> or case 2 : <ol reversed> <li><article>...</article></li> <li><article>...</article></li> <li><article>...</article></li> </ol> The example seems to be logic: "it's a list of entries order by desc date" An other example is a list of important step to use a product: <ol> <li><section><h1>step 1</h1></section></li> <li>