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