let’s say you have to do a site with 20-25 pages and each page has less than 1k text . tough one, what should we do ??? google will not index this page always, sometimes maybe will index it who knows ? here’s a hint .
use a single Tabbed page & send all the traffic to that page .
scripts and idea briefly :
var origWidth, origHeight;
if (document.layers) {
origWidth = window.innerWidth; origHeight = window.innerHeight;
window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); }
} var cur_lyr; // holds id of currently visible layer
function swapLayers(id) { if (cur_lyr) hideLayer(cur_lyr); showLayer(id); cur_lyr = id; }
function showLayer(id) { var lyr = getElemRefs(id); if (lyr && lyr.css) lyr.css.visibility = “visible”; }
function hideLayer(id) { var lyr = getElemRefs(id); if (lyr && lyr.css) lyr.css.visibility = “hidden”; }
function getElemRefs(id) { var el = (document.getElementById)? document.getElementById(id): (document.all)? document.all[id]: (document.layers)? document.layers[id]: null;
if (el) el.css = (el.style)? el.style: el; return el; }
then play with layers IDs swapLayers(‘Player_A’);showLayer(‘P_B’); return false; , use div classes, add in your body onload=”swapLayers(‘load_default_layer’);” and that’s all . OR you may use this wonderful solution “http://www.barelyfitz.com/projects/tabber/” with CSS styling . you may get impressive results . ;)
one more thing . if you want quick 1st page 1st position google result to your “page” for several keywords you should buy a domain containing the keywords you want, to obtain a good position . buy a domain like keyword1.keyword2.keyword3.keyword4.com and redirect as parked_domain to “page” . you may also add subdirectories /keyword5/keyword7/~keyword10 . stylish ;) .