I learned that the name
attribute has been deprecated. But this is how I performed exclusive selection of radio buttons on the form. How do I do it now without using JavaScript?
<input type="radio" name="gender" value="male">Male</input>
<input type="radio" name="gender" value="female">Female</input>