Mobile app version of vmapp.org
Login or Join
Fox8124981

: @font-face, google fonts and SEO Someone I know claims that search engines like Google have trouble with fonts that aren't the old standard fonts of yesteryear, resulting in pages not getting

@Fox8124981

Posted in: #Fonts #Seo #WebCrawlers

Someone I know claims that search engines like Google have trouble with fonts that aren't the old standard fonts of yesteryear, resulting in pages not getting parsed by search spiders, and that to be on the safe side SEO wise I should stick with the standbys like Arial. A quick google search for 'search engines can't read fonts' yielded zilch. Do search engine spiders actually ignore text formatted with fonts they do not recognize?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Fox8124981

2 Comments

Sorted by latest first Latest Oldest Best

 

@Murray432

Yes and no, he's conflating two different things.

In late 90's/early 2000's, when designers needed to use fonts for design reasons, they embedded graphics files in HTML pages. Search engines cannot understand these, nor can the screen readers used by blind and partially sighted people. This is because the only HTML code in the page for a menu link, for example, would be something like

<div><a href="#"><img src="menu-title.gif" /></a></div>

which is meaningless to a robot that at the time could only decipher plain old HTML, ignoring the CSS and tags. The fix in that era was to write the code like this

<div><a href="#"><img src="menu-title.gif" /><span class="text-indent">Menu Title</span></a></div>

and use CSS like this

.text-indent { text-indent: -5000px; }

to shift the text out of the part of the page visible to a sighted user. This meant that search engines would get the information they needed to understand the context of the link without interrupting the visual.

These days you can use technologies like embedded fonts or Google Web Fonts to augment your designs. These render parts of text from the HTML document as an anti-aliased font, but leave the HTML code intact, therefore search engines (and screen readers), can parse the text.

Overall he's wrong on both counts, provided the relevant textual information is available in plain text HTML search engines will understand your page and links - the fonts/graphics are immaterial.

He's also wrong about the groups (from the sound of it he's a blow hard) anyone with access to Google can figure this out.

10% popularity Vote Up Vote Down


 

@Kevin317

Search engines don't read fonts. They don't "see" pages. They read text. They read semantic markup. They try to find relationships. Fonts are completely useless and irrelevant to them.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme