Use the color attribute in HTML to display the color of the text.
Note − This attribute is not supported in HTML5.
Example
You can try to run the following code to learn how to implement color attribute in HTML −
<!DOCTYPE html> <html> <head> <title>HTML Background Colors</title> </head> <body> <table width = "100%"> <tr> <td> <p><font color="blue">This is demo text.</font></p> </td> </tr> </table> </body> </html>