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