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