symfony - Loading fonts in symfony2 -
don't know how load ttf font types on css files twig in symfony2 app. suggestions? ttf inside folder in resources. thanks
load font in twig? want have custom fonts in css file defines styling of twig.
@font-face { font-family: giveitsomename; src: url(locationtoyourfont.ttf); // can add stuff font-style, or font-weight... }
and later in css file, use there font named giveitsomename in classes wish, this
.someclass { font-family: giveitsomename; }
Comments
Post a Comment