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