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