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