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