Forum Moderators: open
But now if I search Google and my site comes up, and then I do a Search Within Results for one of the keywords on my homepage, my site doesn't come up.
So evidently Google has not indexed the keywords included in the very minimal text on my homepage.
Any ideas?
Google is said to penalise if keywords defined but are not found in the body of the text. The other way round is less obvious, but if it is in the text only, then it will carry less weight, as Google has to decide what keywords are relevent.
Mind you, I am just the tea-boy around here, just joined today, so what do I know?
The whole page is created in JS as most of it has to be with rollover code and such. So I guess I should drop in and out of JS and straight HTML so the keyword text can be in straight HTML.
Here's how it is now:
// Code
c1="<tr><td valign=top>";
c2="<img src='buttons/light_off.gif' width=17 height=17 vspace=6 border=0 ";
c3="</a></td><td class='text' width=666>";
c4="</td></tr>";
// Food Calories & Nutrition Calculator
c+=c1+"<a href='index_food.html' ";
c+="onMouseOver='chgImg(\"foodButton\",\"green\"); chgImg(\"fcncLink\",\"fcncGr\")' ";
c+="onMouseout='chgImg(\"foodButton\",\"blue\"); chgImg(\"fcncLink\",\"fcnc\")'>";
c+=c2+"name='foodButton'>";
c+=c3+"<a href='index_food.html' ";
c+="onMouseOver='chgImg(\"foodButton\",\"green\"); chgImg(\"fcncLink\",\"fcncGr\")' ";
c+="onMouseout='chgImg(\"foodButton\",\"blue\"); chgImg(\"fcncLink\",\"fcnc\")'>";
c+="<img src='links/FCnNC_b_389x25.gif' width=389 height=25 name='fcncLink' border=0></a><br>";
c+="Calculate calories and nutrition for grocery and fast food items; enter your own food items and recipes; compare foods for high or low protein, fat, carbohydrate, fiber or sodium content; track calories burned vs. calories eaten. Food lists include groceries, Atkins, Baskin-Robbins, Dunkin' Donuts, KFC, Lean Cuisine by Stouffer's, McDonald's, Nikko Sushi, Panda Express, Pizza Hut, Starbucks, Subway and Taco Bell."+c4;
The keywords are in the last paragraph you see.
Note that the links to my other pages are also coded in JS but I was told Google would find these.?
Thanks!
I also recently learned posting here that at least with IE JS is pretty slow at concatenation. Thus putting together a page in pieces as I was mixing JS and HTML was probably defeating my purpose in trying to make it load faster in the first place.
This is what comes from never having had a computer class and trying to pick it up on your own.
Thanks for the help.