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