Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Specify Colors in CSS using RGB Values</title> <style> h1 { color: rgb(255, 165, 0); } p { color: rgb(0, 255, 0); } </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>