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