CSS Inline
It is possible to place CSS in the your HTML code and this method of CSS usage is referred to as inline css.
Inline CSS has the highest priority out of external, internal, and inline CSS. This means that you can override style rules that are defined in external or internal by using inline CSS.
CSS is built in to every HTML tag. If you want to add a style inside an HTML element all you have to do is specify the desired CSS properties with the style HTML attribute
Sample
Code:
Result:
Inline CSS Sample

