HTML Example: List Ordered Latin Lowercase
x
<title>HTML Example: List Ordered Latin Lowercase</title>
<style>
ol {
list-style-type: lower-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>
In this example, the left side provides the code used to render the output in the right side.
Feel free to copy and paste the code into your own project and modify as you wish.
About HTML
HTML stands for HyperText Markup Language. It's the markup language that enables us to create web pages. Web pages typically consist of HTML, as well as various other technologies, such as CSS (Cascading Style Sheets - for adding styles to web pages), JavaScript (for adding functionality), and jQuery, to name a few.