How to add font file to your website and push to client
I was searching on how to push fonts to client side if it does not have the fonts which my website require then i found this nice solution supported in CSS3 . You just have to add the below lines in your stylesheet and specify the font-family of your font file and src in url where the font file is kept on server . Rest assured your fonts will work on client side .
@font-face {
font-family: Lucida-Calligraphy;
src: url('fonts/LCALLIG.TTF');
}
c9581525-b00e-4a69-b9a0-cb91d2189689|0|.0|96d5b379-7e1d-4dac-a6ba-1e50db561b04
CSS
fonts, CSS3, add font