Create Radio Button In HTML Code
<html><head>
<title>Radio Button</title>
</head>
<body>
<form action="http://www.example.com/profile.php">
<p>Please select your favorite genre:
<br />
<input type="radio" name="genre" value="rock" checked="checked" /> Rock
<input type="radio" name="genre" value="pop" /> Pop
<input type="radio" name="genre" value="jazz" /> Jazz
</p>
</form>
</body>
</html>
0 comments:
Post a Comment