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