Hi all,
I am trying to build a website on my own. But I am not so efficiet in HTML coding but I'm trying to learn. I need a small help here. I am trying to make a form for my website where I'm going to use a Radio button for Male and Female. But the problem is its not being formatted. I wanted to put Male and Female like this:
Your Gender: Male
Female
But I am getting: *Male
*Female
(Replace * with radio button)
My code is like this:
<td><b>Gender:</b></td>
<td><input id="Gender" name="Male" type="radio" > Male<br>
</tr><tr>
<td><input id="Gender" name="Female" type="radio" > Female<br>
</tr><tr>
Please help. What should I write to format it?