How can you add a default text option, such as "Please select", as the first item in the dropdown menu?

To add a default text option such as "Please select" as the first item in a dropdown menu, you can manually add an option element with the desired text at the beginning of the dropdown options list. This option will serve as a placeholder or prompt for users to select an actual option from the dropdown menu.

<select name="dropdown">
    <option value="" disabled selected>Please select</option>
    <option value="option1">Option 1</option>
    <option value="option2">Option 2</option>
    <option value="option3">Option 3</option>
</select>