Answers for "how to use fonts in sass after downloaded"

CSS
4

import font sass

@font-face {
    font-family: 'Open Sans';
    src: url(path/to/file) format(Example: 'truetype' or 'opentype' depending on the file extension of your font);
}


// USAGE
body {
    font-family: 'Open Sans', sans-serif;
}
Posted by: Guest on July-07-2020

Code answers related to "how to use fonts in sass after downloaded"

Browse Popular Code Answers by Language