Page is a not externally linkable
noumaan204 - 12:38 am on Aug 10, 2011 (gmt 0)
I wanted to ask that if I serve webfonts embedded in my css and hosted on my server the same server where i have my blog where I am using this css. Will it create memory issues for my site
for example this in the css
@import url( 'css/reset.css' );
@font-face {
font-family: extrafine;
src: url('http://example.com/fonts/extrafine.ttf');
}
@font-face {
font-family: deja-light;
src: url('http://example.comfonts/deja-light.ttf');
}
@font-face {
font-family: deja-bold;
src: url('http://example.com/fonts/deja-bold.ttf');
}
@font-face {
font-family: BRI293;
src: url('http://example.com/fonts/BRI293.ttf');
}
@font-face {
font-family: GrutchShaded;
src: url('http://example.com/fonts/GrutchShaded.ttf');
My site is having memory issues and I wanted to know could these fonts be the issue?