Using the following code and CSS, how do I display $record in red, and $Name in Blue?
<link rel="stylesheet" type="text/css" href="Index.css" />
$result = mysql_query("SELECT * FROM Person");
echo '<table border="1">';
echo '<tr>';
echo '<th class="Heading">Person\'s Name</th>';
echo '</tr>';
$record = 1;
while($row = mysql_fetch_array($result))
{
echo '<tr>';
echo '<td class="Quantity">';
echo $record++ . ") " . $row['Name'] . '</td>';
echo '</tr>';
}
echo '</table>';
mysql_close($con);
?>