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