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