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