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

<form action="action_page.php">
  <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<br><br>
  <input type="submit">
</form>

</body>
</html>


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