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