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