html radio button selected
Use the 'checked' property to automatically select a radio button. In this example 'Yes' is automatically checked.
Code
Yes<input type="radio" name="myradio" value="Yes" checked="checked" />
No<input type="radio" name="myradio" value="No" />
No<input type="radio" name="myradio" value="No" />