Wednesday, April 4, 2012

Quick Tip: Embedding Font


You have finally got your compaines branding just right you have a sweet logo, awesome color scheme, and that custom font. Now you just have to redesign your companies website, but wait, you have a custom sans serif font...

Fonts are a major part of any company's branding scheme, and help to make your promotional material consistnat. Sure you can change use Arial or Helvetica but those are just aren't the same as your awesome custom font. Luckily for you there is a way to embed your custom font into your website. Simply upload your font to your hosting severing and add the following code to to style sheet and you done.

<style type="text/css">
    @font-face {
    font-family: "Special Font";
    src: url(special.ttf);
    }
.ace {
    font-family: "Special Font";
    font-size: 24px;
    }
</style>

No comments:

Post a Comment