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