<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>