How to achieve this form in HTML?

Here's a very crude form:

<form>
<input type="radio">Male<br />
<input type="radio">Female<br />
<input type="radio">Others, please specify:<input type="textarea"><br />
</form>
 
Back
Top