1<!--Just manke both names equal -->
2<input type="radio" name="options" id="1"/>
3<input type="radio" name="options" id="2"/>
1 <input type="radio" id="huey" name="drone" value="huey"
2 checked>
3<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio-->
1<input type="radio" id="male" name="gender" value="male">
2<label for="male">Male</label><br>
3<input type="radio" id="female" name="gender" value="female">
4<label for="female">Female</label><br>
5<input type="radio" id="other" name="gender" value="other">
6<label for="other">Other</label>