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