Web Designing...

Web Designing...

Wednesday, February 10, 2016

HTML Text Color

HTML Text Color


The color property defines the text color for an HTML element:
 
  <!DOCTYPE html>
     <html>
        <body>
           <h1 style="color:blue;">This is a heading</h1>
           <p style="color:red;">This is a paragraph.</p>
        </body>

     </html>

1 comment: