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