tryit_yourcode See Results <!DOCTYPE html> <html> <head> <style> h1 { color: blue; } h2 { color: #0000ff; } p { color: rgb(0,0,255); } </style> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <p>This is a paragraph</p> </body> </html>