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