install fonts in website
please help me to install fonts in my website.
can i put fontfile in my server and use in webpage.
thanks in advance.
jack
jackparsana
Junior Poster in Training
54 posts since Sep 2010
Reputation Points: 10
Solved Threads: 1
pritaeas
Posting Expert
5,484 posts since Jul 2006
Reputation Points: 653
Solved Threads: 875
Upload font file to your server. Then define font using @font-face:
@font-face {
font-family: yourfont;
src: url('yourfont.ttf');
}
All done. Now you can apply your font to page elements:
p.custom_font{
font-family: yourfont;
}
it works perfectly
thanks a lot
jackparsana
Junior Poster in Training
54 posts since Sep 2010
Reputation Points: 10
Solved Threads: 1