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