954,591 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

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
 

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;
}
Varnius
Newbie Poster
20 posts since Aug 2010
Reputation Points: 12
Solved Threads: 5
 

Read this blog-post too.

pritaeas
Posting Expert
Moderator
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
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: