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