<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>CSS using RGB Values</title> <style> h1 { color: rgb(355, 200, 0); } p { color: rgb(10, 255, 0); } </style> </head> <body> <h1>Happy Morning..</h1> <p>Wonderfull day...</p> </body> </html>