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