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