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