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