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