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