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