There are three places in a document where style sheets can be place, with an individual tag, in the <head> or in an external file. The tag will be get affected if a style calls placed within an individual tag, but other styles can affect the any page that load style sheets or affect the entire page.
For Example:
<h4 style=”color: #0000ff ;”> another blue headline</h4>
Within a head of your HTML document you can create a style sheet by enclosing it like <STYLE> tags. It is a good way to define this mime type of styles which you are creating, and then to put the style rules within comment tags in a way that older browsers can not display them as text on page.
For Example:
<head>
<style>
<!–
H4 { color: blue; }
–>
</style>
</head>
Linking a Style Sheet
A linked style sheet looks like this
<link rel=”stylesheet” type=”text/css” href=”stylesheet.css”>
The benefit of linking a style sheet is that it supports by the major browsers
Importing a Style Sheet
By Importing a style sheets it allow you to keep your all style information in the same place, within the <style> element while also loading external files as style commands.
For Example:
<style>
@import URL (http://yoursite.com/stylesheet.css);
H4 { color: #0000ff; }
</style
Part 4 of this tutorial will be coming soon keep reading. Thanks!

October 17, 2010
Thanks for sharing this helpful info!
October 18, 2010
That was a different thought track. I love your style that you put into your work. Please do move forward with more like this.
November 29, 2010
I’m wondering now if we can talk about your sites statistics – search volume, etc, I’m trying to sites I can buy adspace through – let me know if we can talk about pricing and whatnot. Cheers mate you’re doing a great job though.
December 1, 2010
Hello Guru, what entice you to post an article. This article was extremely interesting, especially since I was searching for thoughts on this subject last Thursday.
December 21, 2010
I Am Going To have to return again whenever my course load lets up – however I am getting your Feed so i can read your internet site offline. Cheers.
February 14, 2011
Amazing article, cheers, I will subscribe to you RSS now.
February 21, 2011
Just discovered this site thru Yahoo, what a pleasant shock!