How to change the text color of an element in HTML?


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>

Updated on: 24-Jun-2020

7K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements