Could you advise me which font I should use in CSS file if we guess that user would have a slow internet connection to my site ?
I've connected local file of font:
@font-face {
font-family: 'Open Sans 2';
src: url('fonts/OpenSans-Light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
Opera shows me that this font would be downloaded for 2 secs !
As a result, site will be opened only per 5 secs. This is unnormal ...
Q: How to include only part of font file or could you give me some kind of lightweight font ?
Thank you for view : ) !