Chage colour

the colur for the text is set in style sheet but how can i change the colour of the text between <b> </b> only
cheers
Doug

Echo "<b>Description:</b> ".$info['desc'] . " <br>";
Echo "<b>Area:</b> ".$info['area'] . " <br>";
Echo "<b>City:</b> ".$info['city'] . " <br>";

Set the color for <b> tags in your stylesheet, too.

<style type="text/css">
b {
  color: red;
}
</style>

Big Thanks Dan
you are the man :cool:
cheers
Doug