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