import font sass

Solutions on MaxInterview for import font sass by the best coders in the world

showing results for - "import font sass"
Lia
30 Feb 2016
1@font-face {
2    font-family: 'Open Sans';
3    src: url(path/to/file) format(Example: 'truetype' or 'opentype' depending on the file extension of your font);
4}
5
6
7// USAGE
8body {
9    font-family: 'Open Sans', sans-serif;
10}