|
No, bots won't recognize it as one word.
I'm not sure if you just want different formatting, or if it's because the html for your site is so bad that you can't have the entire word in one place (that has got to be some weird html...).
Anyway, if it's just to have different formatting on the first letter then just do it like this:
<style>
P {
font-size: 10pt;
}
P:first-letter {
font-size: 12pt;
font-weight: bold;
}
</style>
<p>Welcome</p>
|