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