Use on the webTotal Use [ 4745 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/95abb712140d81092d3f3374213ae0de?family=SancoaleSlabNormMediumItal" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/95abb712140d81092d3f3374213ae0de?family=SancoaleSlabNormMediumItal);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "SancoaleSlabNormMediumItal";
src: url("https://db.onlinewebfonts.com/t/95abb712140d81092d3f3374213ae0de.eot");
src: url("https://db.onlinewebfonts.com/t/95abb712140d81092d3f3374213ae0de.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/95abb712140d81092d3f3374213ae0de.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/95abb712140d81092d3f3374213ae0de.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/95abb712140d81092d3f3374213ae0de.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/95abb712140d81092d3f3374213ae0de.svg#SancoaleSlabNormMediumItal")format("svg");
}
2CSS rules to specify fonts
font-family: "SancoaleSlabNormMediumItal";