HTML Tutorial
<ol>
:Används för att skapa en ordnad lista med numrerade poster.
<ol>
:<ol>
:<ol>
<li>Första posten</li>
<li>Andra posten</li>
</ol>
Explorerar <ol>
-taggen:
<html>
<head>
<title>Exploring the <ol> Tag</title>
</head>
<body>
<h1>En ordnad lista</h1>
<ol>
<li>Första posten</li>
<li>Andra posten</li>
<li>Tredje posten</li>
</ol>
</body>
</html>
Detta kommer att generera en ordnad lista med tre poster, numrerade 1, 2 och 3.