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