Bold a single line in html table <td>

css, html

Solution

- You should use a style sheet.

- There is a simple typo: The / is missing in the second occurrence of `<b>`.

Problem

I have used the following code to make a table but in the tag i only need the XYZ to be bold and all others to be unbold. But when I used this code the whole is going bold. I don't wish to use a css style sheet with this file. Someone please tell me how I can achieve this. ``` <table width=100%> <tr> <td><center><b>XYZ<b><br>Aabc<br>+91-xxxxxxxxx<br>xyz@htjkl.com<center></td> </tr> </table> ``` Thanks in advance.

Original source