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