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