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