Importing Custom Fonts with CSS @fontface
When using a custom font type for you website, there are several options. Obviously the best way is using CSS3 by declaring a variable and importing all necessary font types for browser support. By adding the following to your stylesheet should import your custom font: @font-face { font-family: custom_font; src: url('http://www.website.com/custom_font.ttf'); } p { font-family: custom_font; } However, while working on a recent project, I found that IE of course doesn’t import Open or True Type font. Correct me if you’ve found different. When importing to IE,...
Read More