خيار داخل القائمة المنسدلة يُمثل قيمة قابلة للاختيار.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inline CSS Option Example</title>
</head>
<body>
<form action="#" method="post" style="max-width: 400px; margin: 20px auto;">
<div style="margin-bottom: 15px;">
<label for="color" style="display: block; font-weight: bold; margin-bottom: 5px;">Choose a Color:</label>
<select id="color" name="color" style="width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px;">
<option value="red" style="color: red;">Red</option>
<option value="green" style="color: green;">Green</option>
<option value="blue" style="color: blue;">Blue</option>
</select>
</div>
</form>
</body>
</html>