Inline CSS Coding Style Versus External CSS Scripting

There has always been confusion whether to chooseExternal CSS scripts
an inline or external CSS coding style. Consider theExternal CSS scripts offer an easy way to
following cases before jumping into any drawing anyaccomplish the task, without really hard-coding
conclusion or making the decision of choosing eitheranything. You must always try to make use of them,
of them.as long as you can help it!
Inline style is extremely difficult to be accommodatedThe Bottom-line
on a larger website. In case of smaller sites, updatingThe external CSS must be always preferred over
would take time depending on the size.the inline CSS scripting style, as it is easy to maintain,
An inline CSS code snippet would look like this:however the decision depends upon the utility of the
Inline style sheet.CSS script and the purpose. Only in those cases
There are also embedded style sheets and evenwherein the type of script hardly makes any
linked style sheets. The linked style sheets shoulddifference (meaning that there's no question of
have .css extension.maintenance in long term), you should resort to inline
The CSS file would look something like this -CSS coding style.
Inline CSS scripts must be avoided at all costs on theEven the CS3 web development and coding
larger projects, and must be used only when you'restandards encourage usage of external CSS and
cent percent sure that you'll never need to change itstrongly oppose usage of inline style in projects that
again -for instance hard coding a colour scheme.involve fair amount of coding.