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