Change 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: 2020-06-24T08:21:37+05:30

9K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements