diff --git a/guide/english/html/attributes/font-color-attribute/index.md b/guide/english/html/attributes/font-color-attribute/index.md index 8f5dcb5336..59621b0293 100644 --- a/guide/english/html/attributes/font-color-attribute/index.md +++ b/guide/english/html/attributes/font-color-attribute/index.md @@ -7,7 +7,7 @@ This attribute is used to set a color to the text enclosed in a `````` tag ### Syntax: ```html - + ``` ### Important: @@ -17,11 +17,12 @@ This attribute is not supported in HTML5. Instead, this [freeCodeCamp article](h A color can also be specified using a 'hex code' or an 'rgb code', instead of using a name. ### Example: +In this example we can see how to set green colour to the text enclosed in a ``tag. There are three options: 1. Color name attribute ```html - Font color example using color attribute + Font color example using color name ``` @@ -29,7 +30,7 @@ A color can also be specified using a 'hex code' or an 'rgb code', instead of us ```html - Font color example using color attribute + Font color example using hex code ``` @@ -37,7 +38,7 @@ A color can also be specified using a 'hex code' or an 'rgb code', instead of us ```html - Font color example using color attribute + Font color example using RBG ```