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