
Recall, the Style Declaration is at the heart of CSS. Now we will take a look at the three different ways to use a Style, or 3 types of Styles we can create.
The <style> tag is used to write an Internal Style. Here's an Example:
<head>
<title>Title Goes Here
</title>
<style type="text/css">
#left-col p {
color: #222;
font-weight:bold;
}
</style>
</head>
Inline Styles cannot be resused at all, period. Inline styles are placed directly inside an HTML element in the code. We cannot use the Style Builder to make an Inline Style. Instead, to purposely create an inline style requires you to go into the HTML code and type the style yourself.
Note: Inline Styles do not Have a Selector. Why not? The reason is because an inline style is embedded directly inside the html element it styles. Therefore, there's no need for a selector.
Quite frankly, Inline styles defeat the purpose of using CSS and negates most, if not all of CSS's advantages, like the separation of content from presentation.
Therefore, the use of Inline Styles should be kept to an absolute minimum. Use Inline Styles only as a last resort.
Example of an Inline Style:
<p style="font-size: 14px; color: purple;"></p>
The style is embedded inside the HTML element using the style attribute. The above style cannot be reused at at all. It will only target that one paragraph.
In order to style more paragraphs with an inline style, you'd have to make one inline style per paragraph. That's not efficient at all. And makes a mess of your code and certainly adds to the amount of mark-up in your page.
For the most part, we will want to place the majority of our Style Rules on an External Style Sheet. This will allow us to reuse the styles as many times as we would like simply by linking the External Style Sheet to other web pages.
It also means we only have to create the Styles one time!
An External Style Sheet is a separate page which is then linked to the web page. Therefore, the styles are External to, or outside of, the Web Page.