Fixed markdown syntax (#19060)

One backtick was missing from the starting tag of a code block, which had downstream effects.
This commit is contained in:
Andrei Calinescu 2018-10-16 14:16:36 +11:00 committed by Quincy Larson
parent fce714b14b
commit d87ad0623f

View File

@ -6,7 +6,7 @@ title: Font Color Attribute
This attribute is used to set a color to the text enclosed in a ```<font>``` tag.
### Syntax:
``html
```html
<font color= "color">
```
@ -40,4 +40,4 @@ A color can also be specified using a 'hex code' or an 'rgb code', instead of us
<font color="rgb(0,255,0)">Font color example using color attribute</font>
</body>
</html>
```
```