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