Answers for "import font in csss"

CSS
3

how to import fonts css

@font-face {
  font-family: "minecraft";
  src: url("fonts/minecraft.ttf")
}
/*Have a Nice Day!!! :)*/
Posted by: Guest on August-04-2021
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

Browse Popular Code Answers by Language