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