CSS – Company Logo inside h1 tags

This is extremely useful for use for things such as your company logo. Really SEO friendly.
We hide the text far away off the screen using – text indent – property.

Source Code:

h1 {
    text-indent:-9999px;
    margin:0 auto;
    width:300px; /* logo width */
    height:300px; /* logo height */
    background:transparent url("images/logo.jpg") no-repeat scroll;
}

My official WebSite >