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