I never see Computer Modern font, the one shipped as default for LaTeX type setting system, on any webpage.
How to change the CSS so that font will actually work?
|
|
Basically, you can only do that in modern browsers, unless the user has that font already installed on their system. An option is making a little flash movie for every font instance, but that's a bit intensive and not elegant. Also, you could make an image of the font, and load the image (works every time, but again, not elegant, and not the solution you're looking for). A few references: How to add some non standard font to website? |
||||
|
|
|
Using the Computer Modern font in webpages has become very easy! Just paste the following lines of CSS code in the head section of your html code in order to activate the sans-serif version of that font.
Note that the solution here makes the browser load the current version of the fonts from a CTAN mirror, which can be very slow. This is okay for testing purposes, but in the long run I'd recommend you download these .otf files to your own webserver. |
|||||||||
|
|
you cannot, up until CSS 2.1 you can only use the fonts that are ACTUALLY installed on the client's computer. In CSS 3 there are some ways to embed fonts in your webpage but those ways are not greatly supported by browsers yet. Have a look here: http://home.tiscali.nl/developerscorner/fdc-varia/font-embedding.htm |
|||
|
|
.cm { font-family: "Computer Modern"; } You do need to have a ttf file for that font. |
|||
|
|
You can look at Google Web Font or try to google "web font" , there are lots of free web font service is available that can change the look and feel of your site. Hope this will help you. |
|||
|