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