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