<html>
<head>
<title>Poori Padhai</title>
</head>
<body>
<h2>HTML Radio Button</h2>
<form>
<input type="radio" value="male" name="sex"> Male<br>
<input type="radio" value="female" name="sex"> Female<br>
<input type="radio" value="other" name="sex"> Other<br>
</form>
</body>
</html>