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