Edit This Code:
<!DOCTYPE html>
<html>
<body>

<form>
  <input type="radio" name="gender" value="male" checked> Male<br>
  <input type="radio" name="gender" value="female"> Female<br>
  <input type="radio" name="gender" value="other"> Other  
</form>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy