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