I am trying to include Zurb Icon Fonts 3 into my Moovweb project. First off, is it supported? Second, what do I have to do to get them to work. I have tried a few different combinations of importing them, but each time it brings up a blank local host page.
Thank you in advance.
One way to do this is to create a
fonts
folder under theassets/images
folder where you would place the foundation fonts.Then you would include the
foundation-icons.scss
file in thestylesheets
folder, but rename it so it's a partial:_foundation-icons.scss
Edit the references in
_foundation-icons.scss
so they point toimage-url("fonts/foundation-icons.ttf")
, etc.Then you can
@import "_foundation-icons.scss";
so the styles get compiled in your main stylesheet.