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