<html>
<body>
<h2>Радио кнопки</h2>
<p><strong>input type="radio"</strong> определяет радио кнопку:</p>
<form action="https://www.w3schools.com/action_page.php">
<input type="radio" name="gender" value="male" checked> Мужчина<br>
<input type="radio" name="gender" value="female"> Женщина<br>
<input type="radio" name="gender" value="other"> Другое<br><br>
<input type="submit">
</form>
</body>
</html>