Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <style> ol { list-style-type: upper-latin; } </style> <p>Top 5 databases, ranked by popularity:</p> <ol> <li>Oracle</li> <li>MySQL</li> <li>Microsoft SQL Server</li> <li>PostgreSQL</li> <li>MongoDB</li> </ol> <hr> <p>Ordered lists should be used in cases where the order matters (such as a list of instructions, a list ranked by popularity or other metric, etc). In other words, changing the order would change the meaning of the list (or document).</p> <p>More info: <a href="/html/tags/html_ol_tag.cfm"><code>ol</code></a>, <a href="/html/tags/html_li_tag.cfm"><code>li</code></a>, <a href="/html/examples/html_lists_examples.cfm">list examples</a>.</p>