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