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