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