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