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