Show Output
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS HSL Color Values</title> <style> h1 { color: hsl(360,70%,60%); } p { background-color: hsl(480,50%,80%); } </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>