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