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