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