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