How to manage text

I use Papyrus font for title on site but that for sure will not appear on other computers as is not web font… so who can help me with that to manage this text (font) to be able for others to see…???

Upload the font to your server and link to it with CSS… Like this…

Put this between the head tags of your html file.

<SCRIPT TYPE="text/css">
<!--
@font-face {
     font-family: "name";
     src: url("font.ttf");
}
-->
</STYLE>

Where name is, put the name of your font

Where src is, obviously put the URL to your font.

Now define it on your text like this…

<FONT  FACE="name">Text Goes Here</FONT> 

I believe this only works with true type fonts (.ttf), not sure. I am not sure what browsers this works on either, I have never tested it in Netscape, nor have I ever tested it on a Mac machine.

With certain fonts, the text can look weird set as a custom font.

I hope this helps :slight_smile:

PS: Why do you put that attachment at the bottom of every post? Why don’t you just set it as your footer?

thanx a lot for this
I will try to manage text on this way…

footer will be used later … :slight_smile:

Good luck with the text thing.

I know it is CSS2 and will not work in older browsers (I am thinking 4.0+ browsers only).

And I have no clue about macs because Macs don’t read .ttf fonts (or at least I don’t think they do), so I have no clue how it will work.

I know that Macs don’t read .ttf fonts anyway I’m using win
but there is option to apply css style…making link on fonts added on server… so any page user just have to wait shortly to get origin title font type but not sure right now how and is it works…can be in some 30% or less

CSS wont accept this order
is there any other way to link “title” with font placed on server??

Not that I know of.

What exactly does the error give you?