I have written the code below to create a table, and I only want the text XYZ to be bold and all other text to remain unbold within the < td > tag. However, when I implemented this code, the entire < td > content became bold. I would prefer not to use a CSS style sheet for this file. Can someone please advise me on how to achieve this?
<table width=100%>
<tr>
<td><center><b>XYZ<b><br>Aabc<br>+91-xxxxxxxxx<br><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="98e0e1e2d8f0ecf2f3f4b6fbf7f5">[email protected]</a><center></td>
</tr>
</table>
I appreciate any help in advance.