<ol> ... </ol>


قائمة مرتبة (قائمة بعناصر رقمية).

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Inline CSS Ordered List Example</title>

</head>

<body>

<ol style="list-style-type: decimal; padding-left: 30px; margin: 20px; color: #333;">

<li style="margin-bottom: 10px;">First Item</li>

<li style="margin-bottom: 10px;">Second Item</li>

<li style="margin-bottom: 10px;">Third Item</li>

<li style="margin-bottom: 10px;">Fourth Item</li>

</ol>

</body>

</html>

Inline CSS Ordered List Example
  1. First Item
  2. Second Item
  3. Third Item
  4. Fourth Item