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