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