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