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