HTML5 tags for a search result list
- by user509375
i've a list of items from a query to database. Now i want to display them to user via HTML.
My initial way is like this:
<ol>
<li>
search element 1
</li>
...
</ol>
I'm wondering if there is a better semantic way with HTML5 like:
<article>
<section>
search element 1
</section>
...
</article
Does anyone have a better semantic way?