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