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