ttf to woff converter
So I need to “embed a font to use for a website, I have the .tff file and with tan awesome free online tool I can convert it to .woff http://everythingfonts.com/ttf-to-woff
then all i need to do is add this to css
<style>
@font-face
{
font-family: myFirstFont;
src: url(sansation_light.woff);
}
div
{
font-family:myFirstFont;
}
</style>
read more on web fonts and usage here: http://www.w3schools.com/css/css3_fonts.asp
Convert .ttf to .woff was originally published on wiziwiz
0 Comments