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