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