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