From 69b7a8e594d6accd3ddc3636536ee8877132b04b Mon Sep 17 00:00:00 2001 From: KrsBB <44288174+KrsBB@users.noreply.github.com> Date: Sun, 20 Jan 2019 00:54:35 +0100 Subject: [PATCH] improving-text-in-examples.md (#24514) * Update index.md * remove "attribute" from examples --- .../html/attributes/font-color-attribute/index.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 ```