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