🎯 What you'll practice: Input types, form attributes, and accessible labels.
1-B 2-B 3-C 4-A | 5 = name 6 = submit 7 = <label for="em">Email</label><input type="email" id="em" name="email" required> 8 = Checkboxes allow multiple independent selections; radio buttons in the same "name" group allow only one selection 9 = Placeholder text disappears once typing starts and isn't read reliably by all screen readers; a real label stays visible and is properly announced | 10 = name(text,required), email(email,required), password(password,required), confirm-password(password,required), terms(checkbox,required) — field names and types should be clear and each paired with a label.