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