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