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