Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS Font Color</title> <style> h1 { color:red; } h2 { color:#11a286; } p { color:rgb(66, 103, 178); } </style> </head> <body> <h1>This is heading.</h1> <h2>This is another heading</h2> <p>This is a paragraph</p> </body> </html>