Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .color { color: hsl(89, 43%, 51%); } </style> </head> <body> <h2>Color property example.</h2> <p>This is some paragraph for example</p> <p class="color">This is some paragraph with an HSL color value.</p> <p>This is some paragraph for example.</p> </body> </html>