Learn HTML with wishmi
Sunday, January 12, 2020
Radio Buttons
<html>
<head>
<title>This is my first web page</title>
</head>
<form>
<input type="radio" name="Gender"/> Male<br /><br>
<input type="radio" name="Gender"/> Female
</form>
</body>
</html>
This is my first web page
Male
Female