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