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