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