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