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