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