|
Posted by BootNic on 02/11/06 19:36
> "Jonathan N. Little" <lws4art@centralva.net> wrote:
> news:43ee14c6$0$25079$cb0e7fc6@news.centralva.net....
>
> BootNic wrote:
>>> "Greg N." <yodel_dodel@yahoo.com> wrote:
>>> news:dskeps$97t$1@online.de....
>>>
>>> I need to mark up a compound noun such that it looks like one word
>>> on screen, but I want search bots to see two separate words.
>>>
>>> Take, for example the word "Kindergarten". I want a search for
>>> the word "kinder" or the word "garten" to hit upon my page.
>>>
>>> I was thinking to insert a in a tiny font size between
>>> "kinder" and "garten". Are there other, maybe more elegant ways?
>>>
>>> My web sites are written in German. In this language, as you
>>> might know, the problem described above is ubiquitous.
>>
>>
>> Hide the space with css, no clue what a search bot will do with it.
>>
>> kinder<span style="display:none;"> </span>garten
>>
> Would this not be simpler?
>
> <p>... kinder<span>garten</span> ... </p>
I give up.
Is it the same thing?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">
function blip(){
tip=(document.body.textContent)?document.body.textContent:
document.body.innerText;
alert(tip)
}
window.onload=blip;
</script>
<title></title>
</head>
<body>
<p>kinder<span style="display:none;"> </span>garten</p>
<p>kinder<span>garten</span></p>
</body>
</html>
--
BootNic Saturday, February 11, 2006 12:36 PM
One must learn by doing the thing, for though you think you know it,
you have no certainty until you try.
*Aristotle*
Navigation:
[Reply to this message]
|