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