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