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