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