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