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