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