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