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