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