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