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