botão de rádio verificado padrão
<input type="radio" name="imgsel" value="" checked>
SteDeus
<input type="radio" name="imgsel" value="" checked>
<input type="radio" id="huey" name="drone" value="huey"
checked>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio-->
<!--Just manke both names equal -->
<input type="radio" name="options" id="1"/>
<input type="radio" name="options" id="2"/>
//checked
<input type="radio" id="huey" name="drone" value="huey"
checked>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>
<lebel for="Male">Male</lebel><br>
<input type="redio" id="Male"value="Male"name="male">Male<br>
<lebel for="female">female</lebel><br>
<input type="redio" id="Female"value="Female"name="female">Female<br>
<lebel for="other">other</lebel><br>
<input type="redio" id="other" value="Other"name="other">other<br>