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