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