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