I have three radio buttons that are possible answers to a question. I
have put them in a table and there is a label that goes with each radio
button as its text. I would like to make some of the text of the label
bold, so I have put <b> tags around the text I want bold. But it
doesn't work; the text that should be bold is just regular. Any ideas
would be appreciated. Thanks in advance. Here is the html:
<table id="ANSWERS_4" border="0"
style="color:#003366;font-family:Arial;font-size:12pt;">
<tr>
<td>
<input id="ANSWERS_4_0" type="radio" value="A" />
<label for="ANSWERS_4_0"><b>This text is bold</b> 200 mg/dL</label>
</td>
</tr>
<tr>
<td>
<input id="ANSWERS_4_1" type="radio" value="B" />
<label for="ANSWERS_4_1">350 mg/dL</label>
</td>
</tr>
</table>