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