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