The best way to add your font selections is to use a CSS style sheet.
Here is a sample of what you can include:
---start---
body {
font-family: "Trebuchet MS", Arial, sans-serif;
}
h1 {
font-size: 2em;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
h2 {
font-size: 1.6em;
color: #000000;
font-weight: bold;
}
h3 {
font-size: 1.4em;
}
---end---
save the above as a text file and name it e.g. fonts.css
Then on every page you make, create a link to that file and put it in the header.
Link would look like this:
<link href="fonts.css" rel="stylesheet" type="text/css" />
Mike...
..........................................