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