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