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