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