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