<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS HSL Color Values</title> <style> h1 { color: hsl(350,72%,65%); } p { background-color: hsl(470,55%,88%); } </style> </head> <body> <h1>This is a heading</h1> <p>This is a frist paragraph.</p> </body> </html>