Latest 100 public
snipts » font-face
showing 1-3 of 3 snipts for font-face
-
∞ CSS font-face
@font-face { font-family: 'LeagueGothic'; src: url(LeagueGothic.otf); } @font-face { font-family: 'Droid Sans'; src: url(Droid_Sans.ttf); } header { font-family: 'LeagueGothic'; } /* Robust browsers-proof version */ @font-face { font-family: 'Tagesschrift'; src: url('tagesschrift.eot'); /* IE 5-8 */ src: local('?'), /* sneakily trick IE */ url('tagesschrift.woff') format('woff'), /* FF 3.6, Chrome 5, IE9 */ url('tagesschrift.ttf') format('truetype'), /* Opera, Safari */ url('tagesschrift.svg#font') format('svg'); /* iOS */ }
-
∞ @font-face
@font-face { font-family: "Your typeface"; src: url("type/filename.eot"); src: local("Alternate name"), local("Alternatename"), url("type/filename.woff") format("woff"), url("type/filename.otf") format("opentype"), url("type/filename.svg#filename") format("svg"); }
-
∞ CSS font-face embedding
@font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot'); src: local('Graublau Web Regular'), local('Graublau Web'), url('GraublauWeb.otf') format('opentype'); } /* From “Bulletproof @font-face syntax” at paulirish.com. */


