CSS - CSS Inline Styles
CSS Inline Styles
You can also insert css into the html tag which is known as inline styling.
Some developers believe that this method is quite inefficient and can be hard to override when using external stylesheets.
You can force overriding of the styles by the use of the important!
tag.
HTML
<div style="font-weight:bold;">I Am Bolded Text</div>
Result
I Am Bolded Text