Write the HTML code to create radio button for the education and specify on the degree.Please answer this.I will mark you as brainliest.
Answers
Answered by
2
A radio button is a form element that allows the user to select one option from a range of options.
Structure of radio button
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
And another in form element
<form action="#" target="result" method="get">
<p>What is your gender?</p>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<p><input type="submit" value="Submit"></p>
</form>
<h3>Result:</h3>
<iframe name="result" style="height:100px;width:200px;"></iframe>
Plzzz mark it brainlist
Similar questions