قائمة غير مرتبة (قائمة بعناصر غير رقمية).
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inline CSS Unordered List Example</title>
</head>
<body>
<ul style="list-style-type: disc; padding-left: 20px; 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>
</ul>
</body>
</html>