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