sudhakarinfotech
(current)
Run Code
Live Code Editor- HSLA Colors
Source Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>HSLA Color</title> <style type="text/css"> .bg { background: hsla(120, 40%, 60%, 0.5); padding: 10px; } .bg-alt { color: hsla(240, 70%, 50%, 1); } </style> </head> <body> <h1>HSLA Color</h1> <p class="bg">This is hsla value1</p> <p class="bg-alt">This is hsla value2</p> </body> </html>
Source Code Output :
Running