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