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