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