Glyphicons images , not a font. All icons are in the sprite image (also available as separate images), and they are added to the elements as located backround-image s:

Actual font icons ( FontAwesome , for example) include loading a specific font and using the content property, for example:
@font-face { ... src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); ... } .icon-beer:before { content: "\f0fc"; }
Since the content property is not supported in older browsers, they also use images .
Here is an example of a completely raw FontAwesome that is used as a font, turning  (& # xf0f9; - you cannot see it!) to the ambulance: <a5>
James Donnelly Mar 19 '13 at 15:13 2013-03-19 15:13
source share