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