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