Hi,
I have the following code, can creates a simple 1 column by 2 row table.
How do I display "Persons First Name" in bold, without displaying "Persons Last Name" in bold?
e.g.
Persons First Name
Persons Last Name
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<table width="246" border="1" class="coll">
<tr>
<th width="135">Name</th>
<th width="95"> </th>
</tr>
<tr>
<td id="bold">Persons First Name<br>
Persons Last Name </td>
<td> </td>
</tr>
</table>
</body>
</html>