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