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