ManweSulimo
06-13-2003, 01:47 AM
Is there a way to put a font on the server and have a web page use that font with a CSS or something, or do you have to have the user download the font onto their computer in order for it to work?
|
View Full Version : Font stuff ManweSulimo 06-13-2003, 01:47 AM Is there a way to put a font on the server and have a web page use that font with a CSS or something, or do you have to have the user download the font onto their computer in order for it to work? zangerbanger 06-13-2003, 02:11 AM The user will have to have the font downloaded on their computer already for it to work. Sometimes, for font downloading sites, they put a graphic which shows what the font looks like. ManweSulimo 06-13-2003, 02:18 AM Yeah, I didn't think you could. Oh well, worth a shot checking anyways Brandon 06-13-2003, 04:49 PM <style> @font-face { font-family: "name"; src: url("http://www.yoursite.com/font_file_name.ttf"); } </style> then in the body do <font face="name"> |