Can Google Fine Your Webpage?

Google doesn't find all web pages that some students produce, so your fan base would not grow as big, or it would be found after you looked 30 pages in. Thats ok I have a solution. Do you have an h1?
Google's data base searches work by scanning the h1 text on your html page.Thus making you more easier to find.

What if your h1 is a logo and there is no text?
 Easy fix because there is something called the image replacement technique. Using the CSS you place your logo in there and id it with h, then using <span>insertnamehere</span> it would not show your text it would keep your logo , but Google would find the see the name for it self.

Code Example:


<h1><span>LAZYRED</span></h1>



h1{
float:left;
width:187px;
height:191px;
background-image:url(../images/Resize-Slices_01.gif);
display:none;
}