Jump to content

How to add some non standard font to website?


voip03

Recommended Posts

copy the font type from your computer and upload it to your server.

can be done using css3

@font-face {
  font-family: fontname;
  src: url('fontname.ttf');
}
.my_CSS3_class {
  font-family: fontname;
  font-size: 3.2em;
}

change fontname to the actual font name

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.