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