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