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