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