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