Show Output
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Functional Notation</title> <style> h1 { color: rgb(0,255,255); } p { background-color: rgb(0%,100%,100%); } </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>