Answers for "how to add font-family in scss"

CSS
3

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
1

CSS Font-Family

example {
  font-family: "font of choice", "fallback font no1", sans-serif;
Posted by: Guest on March-03-2021

Code answers related to "how to add font-family in scss"

Browse Popular Code Answers by Language