Andy Brown
asked on
Using a non-standard (PC, Mac) font on my webpage
I would like to use a non-standard (PC, Mac) font on my webpage.
I have two fonts: browa.oft & browa.eot. At present I can display the text correctly (on my machine) if pointing to the .oft font, but not the .eot, which I understand is the one I need to put onto our webserver.
There is a command called "font-face", but I have no clue as to how to put this into the html.
Any help would be greatly appreciated.
FontTest.html
I have two fonts: browa.oft & browa.eot. At present I can display the text correctly (on my machine) if pointing to the .oft font, but not the .eot, which I understand is the one I need to put onto our webserver.
There is a command called "font-face", but I have no clue as to how to put this into the html.
Any help would be greatly appreciated.
FontTest.html
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
You can create a font family in CSS that will attempts to use your non-standard font first if it exists on the user’s machine, then defaults to a standard font if it doesn’t. If you must have a specific font, save your text as an image first.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
The first input is the basis for why this won't work. You either have to ask the average anonymous user to add the font to their system, then restart the browser, in which case the font will be found on their system by their browser ..... or you cannot do it. It is not practical for sites attracting many people to ask them to put your custom font on their system. They won't do it. Hence the only realistic choice is to use a graphic file to display that font. Then use a standard font for the rest of the text. Remember, the graphics are not seen by search engines as text, therefore not indexed as key words.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thank you everyone for all of your help on this - very much appreciated.