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