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