Which of the form fields below has both:
aria-describedby)Strongly discouraged. Placeholder text disappears when users begin typing and is not announced as instructions when screen reader users move to the field.
<label for="na">Name</label>
<input id="na" placeholder="Include full name">
Not recommended. Sighted users can see the instructions, but screen reader users may not hear them when they move to the form field.
<label for="ph">Phone</label>
<span>Include your area code</span>
<input id="ph" type="tel">
Recommended. Sighted users can always see the instructions, and screen reader users hear them announced when the form field receives focus.
<label for="ccc">Email</label>
<span id="ccc-h">Add your full and valid email address</span>
<input id="ccc" type="email" aria-describedby="ccc-h">