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