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