How do you implement an icon font?
Github uses them extensively on their webpage, yet trying to reproduce their implementation results in failure.
https://github.com/styleguide/css/7.0
See the attempted implementation here:
http://jsfiddle.net/spuder/jsmzm/7/
<div id="github">
<span class="mega-icon mega-icon-blacktocat"></span>
</div>
.mega-icon-blacktocat {
content:"\f209";
}
I've read many pages on icon fonts, and gone through several tutorials with no success
http://css-tricks.com/examples/IconFont/
Placing Unicode character in CSS content value
Beginner.
Update 2013-4-11 The solution provided works great in WebKit, it does not work in firefox 20.0 http://jsfiddle.net/jsmzm/10/