Use on the webTotal Use [ 3588 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/6e313bf1643f82e3190999ae65494dbf?family=CS+Kalimer+Extrude+Right+3D+Demo" 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/6e313bf1643f82e3190999ae65494dbf?family=CS+Kalimer+Extrude+Right+3D+Demo);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "CS Kalimer Extrude Right 3D Demo";
src: url("https://db.onlinewebfonts.com/t/6e313bf1643f82e3190999ae65494dbf.eot");
src: url("https://db.onlinewebfonts.com/t/6e313bf1643f82e3190999ae65494dbf.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6e313bf1643f82e3190999ae65494dbf.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6e313bf1643f82e3190999ae65494dbf.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6e313bf1643f82e3190999ae65494dbf.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6e313bf1643f82e3190999ae65494dbf.svg#CS Kalimer Extrude Right 3D Demo")format("svg");
}
2CSS rules to specify fonts
font-family: "CS Kalimer Extrude Right 3D Demo";