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