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