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