How would you make this label accessible?

Consider this snippet.

<label>Email</label>
<input type="email" id="email">

What should be added so screen readers reliably connect the label and input.

Sora

Add for="email" to the label so it matches the input’s id.

WaffleFries