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