<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Text Color using CSS</title> <style> h1 { color: purple; } p { color: blue; } </style> </head> <body> <h1>Happy Morning.</h1> <p>This is a wonderfull day..</p> </body> </html>