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