added one more attribute (#27307)

This commit is contained in:
Ayushman9454
2019-04-17 16:57:13 +05:30
committed by The Coding Aviator
parent 656117cbc3
commit 1b8d148a0d

View File

@ -42,3 +42,11 @@ In this example we can see how to set green colour to the text enclosed in a `<f
</body>
</html>
```
4. HSL attribute
```html
<html>
<body>
<font color="hsl(80, 90%, 75%)">Font color example using color attribute</font>
</body>
</html>
```