Adding Webfont to a CSS file
Description
Put the file in the font or typography folder of your theme and ensure that the path is correct
Put the file in the font or typography folder of your theme and ensure that the path is correct
CSS Source Code
/*****************Typography Start***************/
/****_gdi is important**********/
@font-face {
font-family: 'fontfamilyname';
src: url('../fonts/fontfamilyname/fontname_gdi.eot');
src: url('../fonts/fontfamilyname/fontname_gdi.eot?#iefix') format('embedded-opentype'),
url('../fonts/fontfamilyname/fontname_gdi.woff') format('woff'),
url('../fonts/fontfamilyname/fontname_gdi.ttf') format('truetype'),
url('../fonts/fontfamilyname/fontname_gdi.svg#gothamregular') format('svg');
font-weight: normal;
font-style: normal;}