Use on the webTotal Use [ 6569 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/812f54e495990719fe3894adb4f55fad?family=Core+Slab+M+W01+65+Bold+Italic" 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/812f54e495990719fe3894adb4f55fad?family=Core+Slab+M+W01+65+Bold+Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Core Slab M W01 65 Bold Italic";
src: url("https://db.onlinewebfonts.com/t/812f54e495990719fe3894adb4f55fad.eot");
src: url("https://db.onlinewebfonts.com/t/812f54e495990719fe3894adb4f55fad.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/812f54e495990719fe3894adb4f55fad.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/812f54e495990719fe3894adb4f55fad.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/812f54e495990719fe3894adb4f55fad.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/812f54e495990719fe3894adb4f55fad.svg#Core Slab M W01 65 Bold Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "Core Slab M W01 65 Bold Italic";