|
Posted by richardv2 on 01/19/06 07:10
CSS absolutely can make all of your page the same font. Read up on CSS
font-family.
1. In the <head> of your page, link to the CSS file like...
<link rel="stylesheet" type="text/css" href="style.css">
2. In style.css set up whatever you want...
body {
font-family: "MS Sans-serif", sans-serif, Georgia, Whatever
}
3. Because not ALL machines have any of the fonts the font-family
selector says "USE THIS LIST IN PRIORITY ORDER! Use the first font you
find on this machine, starting from the left."
Any font that has a space in it MUST be in quotes, otherwise, just make
a comma separated list.
Google "fonts CSS font-family" to find out the CLOSEST to the font you
want on different operating systems. (I found that list, but it is not
with me now.)
Navigation:
[Reply to this message]
|