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