Skip to content

Instantly share code, notes, and snippets.

@nrollr
Created February 28, 2016 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nrollr/7ce1c94c234a8f82ef08 to your computer and use it in GitHub Desktop.
Save nrollr/7ce1c94c234a8f82ef08 to your computer and use it in GitHub Desktop.
Code to include custom Fonts in CSS
@font-face {
font-family: 'name_font';
src:url('fonts/name_font.eot');
src:url('fonts/name_font.eot?#iefix') format('embedded-opentype'),
url('fonts/name_font.woff') format('woff'),
url('fonts/name_font.ttf') format('truetype'),
url('fonts/name_font.svg#bpicons') format('svg');
font-weight: normal;
font-style: normal;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment