Do you use "list" tags for lists only?
Rules to Better Websites - Layout And Formatting|8f25811e-0bde-4b94-838b-20a7c62c723c
v3.0
Posted at
10/10/2016 12:23 PM by
Dennis Heer
Rule Intro
The HTML list tags <ul> and <ol> should be used for unordered and ordered lists only.
Page Content
Tip: If your list tag (<ul> or <ol>) doesn't have a list item (<li>) inside it, then it's not a list. Consider using another HTML tag (E.g. <p>).
<ul>
A normal text
</ul>
Figure: Bad Example - Using the <ul> for a text
<ul><li>A list item</li></ul>
<ol><li>A list item</li></ol>
Figure: Good Example - Using the <ul> and <ol> for lists
{8775EC15-6A54-4E29-9C2A-43AA1B85E1F5}
Do you feel this rule needs an update?