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