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