Form action with radio button : Form RadioButton « Form « HTML / CSS






Form action with radio button

<html>
<body>

<form name="input" action="fake_action.asp" method="get">
Male: 
<input type="radio" name="Sex" value="Male" checked="checked">
<br>
Female: 
<input type="radio" name="Sex" value="Female">
<br>
<input type ="submit" value ="Submit">
</form> 

</body>
</html>



           
       








Related examples in the same category

1.Radio Button Example
2.Single choice