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