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