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