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