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