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