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